Started with web application
This commit is contained in:
parent
7beda138c5
commit
75f2365024
40 changed files with 17382 additions and 0 deletions
11
backend/Dockerfile
Normal file
11
backend/Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM python
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
COPY /src .
|
||||
|
||||
CMD [ "flask", "run" ]
|
Loading…
Add table
Add a link
Reference in a new issue