Fix dockerfile
release-tag / release-image (push) Successful in 26s

This commit is contained in:
2024-05-09 10:18:38 +02:00
parent 2b699857e2
commit ef6ba0fe48
+3 -3
View File
@@ -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"]
CMD ["python3", "-u", "./src/main.py"]