16 lines
258 B
Docker
16 lines
258 B
Docker
FROM python:3.14-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app/
|
|
COPY gunicorn.conf.py /app/
|
|
COPY ./src/ /app/
|
|
|
|
RUN pip install --upgrade pip && \
|
|
pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["gunicorn", "website.wsgi:application"]
|
|
|