Files
devopsexam/Dockerfile
Henrik Corneliussen 382f8fb1f1 test build
2026-05-08 15:59:13 +02:00

13 lines
202 B
Docker

FROM python:3.11-slim //Test
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"]