From 28563f4863331aa84b4abfa7cfe8ab14221fed13 Mon Sep 17 00:00:00 2001 From: yongenaelf <132553186+yongenaelf@users.noreply.github.com> Date: Wed, 6 Nov 2024 20:16:24 +0800 Subject: [PATCH] Update Dockerfile to copy all files into the Docker image * Change the COPY command to copy all files from the current directory into the Docker image --- examples/software_team/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/software_team/Dockerfile b/examples/software_team/Dockerfile index 3ceab7a3..dd095403 100644 --- a/examples/software_team/Dockerfile +++ b/examples/software_team/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app # Copy the software_team example files into the Docker image ARG EXAMPLES_DIR=examples/software_team -COPY ${EXAMPLES_DIR} /app +COPY . /app RUN pip install --no-cache-dir -r requirements.txt # Set the entrypoint to run the main.py file