forked from NoLog.cz/trhlina-calendar
7 lines
207 B
Docker
7 lines
207 B
Docker
FROM python:3.12.2-bookworm
|
|
WORKDIR /trhlina-calendar
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir --use-pep5 -r requirements.txt
|
|
COPY . .
|
|
EXPOSE 80
|
|
CMD ["gunicorn", "wsgi:app", "-b" "0.0.0.0:80"]
|