submodule en src

This commit is contained in:
2020-03-16 12:14:50 +01:00
parent 9c59f162bf
commit cf13c06ba8
7 changed files with 33 additions and 0 deletions

10
src/dockerfile Normal file
View File

@@ -0,0 +1,10 @@
from python:3.7
copy . /app
workdir /app
run pip install -r requirements.txt
expose 6000
entrypoint [ "python" ]
cmd [ "app.py" ]