Skip to content

Commit

Permalink
Update Dockerfile to copy all files into the Docker image
Browse files Browse the repository at this point in the history
* Change the COPY command to copy all files from the current directory into the Docker image
  • Loading branch information
yongenaelf committed Nov 6, 2024
1 parent 5bc77b1 commit 28563f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/software_team/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 28563f4

Please sign in to comment.