Added dev environment for docker

This commit is contained in:
cami 2021-05-11 02:03:32 +02:00
parent ea6497d7e3
commit 6ad07d2541
5 changed files with 50 additions and 16 deletions

View file

@ -1,2 +1,2 @@
FLASK_APP=src/api.py
FLASK_APP=src/app.py
FLASK_ENV=development

19
backend/Dockerfile Normal file
View file

@ -0,0 +1,19 @@
# For more information, please refer to https://aka.ms/vscode-docker-python
FROM python:3.9
EXPOSE 5000
# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE 1
# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED 1
# Install pip requirements
ADD requirements.txt .
RUN python -m pip install -r requirements.txt
WORKDIR /app
ADD . /app
CMD ["flask", "run"]