Files
flask-formula10/Dockerfile
Christoph Urlacher 7ea5d945c9
Some checks failed
Build Formula10 Docker Image / build-docker (push) Failing after 8s
Update docker image python version
2024-02-16 16:11:32 +01:00

11 lines
233 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.11.8-slim-bookworm
RUN apt-get update -y
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["python3", "-u", "formula10.py"]