From 93e3fd5720d6dc82968243ef8634fa29b5a03168 Mon Sep 17 00:00:00 2001 From: dmunozv04 <39565245+dmunozv04@users.noreply.github.com> Date: Fri, 17 Nov 2023 11:43:33 +0100 Subject: [PATCH] fix dockerfile copy --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a349cdf..3c81f71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,12 +9,11 @@ COPY requirements.txt . RUN pip install --upgrade pip wheel && \ pip install -r requirements.txt -COPY requirements.txt . WORKDIR /app RUN python -m compileall . -COPY . . +COPY src . ENTRYPOINT ["python3", "-u", "main.py"] \ No newline at end of file