diff --git a/Dockerfile b/Dockerfile index 231ccd6..e405d04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,9 @@ COPY requirements.txt ./ RUN pip install -r requirements.txt -COPY src . + # étape de production -COPY src . +COPY src ./src EXPOSE 8765 -CMD ["python3", "-u", "main.py"] \ No newline at end of file +CMD ["python3", "-u", "./src/main.py"] \ No newline at end of file