dockerfile update

This commit is contained in:
Ivan I. Ovchinnikov 2023-03-14 15:38:50 +03:00
parent 8279f5a161
commit e421ed037c
1 changed files with 8 additions and 0 deletions

8
flask_app/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM ubuntu:latest
MAINTAINER Ivan I. Ovchinnikov 'mail@iovchinnikov.ru'
RUN apt update -qy
RUN apt install -qy python3 python3-pip python3-dev
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python3", "app.py"]