This commit is contained in:
√(noham)²
2024-03-03 00:23:06 +01:00
parent 6a293919d4
commit cc5545d7b1

View File

@@ -1,6 +1,6 @@
FROM python:3.10-alpine
WORKDIR /app
WORKDIR /t
COPY . .
@@ -10,4 +10,4 @@ EXPOSE 3005
RUN pip install gunicorn
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:3005", "--chdir", "/app", "app:app"]
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:3005", "--chdir", "/t", "app:app"]