Added dev environment for docker
This commit is contained in:
parent
ea6497d7e3
commit
6ad07d2541
5 changed files with 50 additions and 16 deletions
19
backend/Dockerfile
Normal file
19
backend/Dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue