Files
devopsexam/Dockerfile
Henrik Corneliussen 0fa18ecf4f test
2026-05-08 16:11:08 +02:00

13 lines
196 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt gunicorn
COPY . .
EXPOSE 5000
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]