21 lines
503 B
Docker
21 lines
503 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential libpq-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt \
|
|
--default-timeout=100 \
|
|
-i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
|
|
COPY . .
|
|
|
|
EXPOSE ${DJANGO_PORT:-8000}
|
|
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:${DJANGO_PORT:-8000}", \
|
|
"--workers", "4", "--timeout", "120", \
|
|
"config.wsgi:application"]
|