Add Dockerfile deployment

This commit is contained in:
Augusto Gunsch 2022-03-28 18:50:42 -03:00
parent 95b172475e
commit 991d641a37
2 changed files with 19 additions and 1 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM debian
ENV APP_PATH=/app
COPY . $APP_PATH
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y python3.9 python3.9-venv
ENV VIRTUAL_ENV=$APP_PATH/venv
RUN python3.9 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
WORKDIR $APP_PATH
RUN pip install -r requirements.txt
CMD ["gunicorn", "index:app", "-b", "0.0.0.0:5000"]

View File

@ -1,2 +1,3 @@
flask==2.0.2
flask==2.1.0
markdown2==2.4.2
gunicorn==20.1.0