From 27e243fcdfa9a148a29a7ccb5ccc57c5a392c0b6 Mon Sep 17 00:00:00 2001 From: David <17435126+DavidLMS@users.noreply.github.com> Date: Fri, 9 Aug 2024 18:55:19 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e70e8c2..2f84f00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 ./ @@ -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"]