Dockerfile 100 B

1234
  1. FROM docker.io/python:3.9.5
  2. RUN pip install flask==1.1.2
  3. COPY . /src/
  4. CMD ["python", "/src/app.py"]