From 36fe2db35f8dd81a3fe6dd56b492022b6b9b3c6b Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 5 Feb 2024 03:07:59 -0500 Subject: [PATCH] Don't add Dockerfiles into Docker containers now that they have secrets Solely add the source code for them as needed to satisfy the workspace bounds. --- orchestration/runtime/Dockerfile | 3 ++- orchestration/src/main.rs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/orchestration/runtime/Dockerfile b/orchestration/runtime/Dockerfile index 53df3a1c5..c05df2ee2 100644 --- a/orchestration/runtime/Dockerfile +++ b/orchestration/runtime/Dockerfile @@ -21,7 +21,8 @@ ADD message-queue /serai/message-queue ADD processor /serai/processor ADD coordinator /serai/coordinator ADD substrate /serai/substrate -ADD orchestration /serai/orchestration +ADD orchestration/Cargo.toml /serai/orchestration/Cargo.toml +ADD orchestration/src /serai/orchestration/src ADD mini /serai/mini ADD tests /serai/tests ADD Cargo.toml /serai diff --git a/orchestration/src/main.rs b/orchestration/src/main.rs index 56760725d..53b105775 100644 --- a/orchestration/src/main.rs +++ b/orchestration/src/main.rs @@ -128,7 +128,8 @@ ADD message-queue /serai/message-queue ADD processor /serai/processor ADD coordinator /serai/coordinator ADD substrate /serai/substrate -ADD orchestration /serai/orchestration +ADD orchestration/Cargo.toml /serai/orchestration/Cargo.toml +ADD orchestration/src /serai/orchestration/src ADD mini /serai/mini ADD tests /serai/tests ADD Cargo.toml /serai