diff --git a/Dockerfile b/Dockerfile index ffe54a6..0ac5268 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ FROM python:3.13-slim RUN python -m venv /.venv ENV PATH="/.venv/bin:$PATH" -RUN pip install "django" +RUN pip install "django<7" gunicorn COPY src /src WORKDIR /src -CMD ["python", "manage.py", "runserver", "0.0.0.0:8888"] \ No newline at end of file +CMD ["gunicorn", "--bind", ":8888", "core.wsgi:application"] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 97e844d..f8b5d60 100644 Binary files a/requirements.txt and b/requirements.txt differ