13 lines
253 B
Docker
13 lines
253 B
Docker
FROM python:3.13-slim
|
|
|
|
RUN python -m venv /.venv
|
|
ENV PATH="/.venv/bin:$PATH"
|
|
|
|
COPY requirements.txt /tmp/requirements.txt
|
|
RUN pip install -r /tmp/requirements.txt
|
|
|
|
COPY src /src
|
|
|
|
WORKDIR /src
|
|
|
|
CMD ["gunicorn", "--bind", ":8888", "core.wsgi:application"] |