Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLMS authored Aug 9, 2024
1 parent 333acbd commit 27e243f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.8-slim

# Set the working directory in the container
WORKDIR /app
WORKDIR .

# Copy the necessary files to install dependencies
COPY requirements.txt ./
Expand All @@ -16,7 +16,7 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .

# Ensure the entry script has execution permissions
RUN chmod +x /app/entrypoint.sh
RUN chmod +x ./entrypoint.sh

# Set the entrypoint to the script and pass any arguments
ENTRYPOINT ["/app/entrypoint.sh"]
ENTRYPOINT ["entrypoint.sh"]

0 comments on commit 27e243f

Please sign in to comment.