Files
Quatsh-Website/Dockerfile
WGAVermeer acc116a6c1
Some checks failed
Gitea build & run. / docker (push) Failing after 3s
added dev make file for ease in development.
2026-03-08 13:20:45 +01:00

16 lines
258 B
Docker

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