8 lines
201 B
Docker
8 lines
201 B
Docker
FROM python:3.13-alpine
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
COPY . .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
EXPOSE 8000
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "base.wsgi:application"]
|