Skip to content

Commit

Permalink
Update Dockerfile to streamline application structure
Browse files Browse the repository at this point in the history
- Modified the Dockerfile to copy the entire project directory into the /app directory, replacing the previous src directory copy. This change simplifies the build context and ensures all necessary files are included in the Docker image.

These adjustments aim to enhance the Docker image's consistency and ease of use.
  • Loading branch information
VikramxD committed Dec 10, 2024
1 parent 9b9c09c commit 5d9cc8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DockerFileFolder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

# Copy everything from DockerFileFolder and the rest of the directory structure
COPY DockerFileFolder/ /app/DockerFileFolder/
COPY src/ /app/src/
COPY . /app
COPY requirements.txt /app/
COPY pyproject.toml /app/

Expand Down

0 comments on commit 5d9cc8d

Please sign in to comment.