11 lines
196 B
Docker
11 lines
196 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
COPY app.py ./
|
|
COPY templates/ ./templates/
|
|
|
|
RUN pip install --no-cache Flask Jinja2 gunicorn
|
|
|
|
# expose port 80
|
|
CMD ["gunicorn", "-b", "0.0.0.0:80", "app:app"]
|