Add files via upload

This commit is contained in:
malaohu
2021-03-27 11:31:35 +08:00
committed by GitHub
parent cbe368f713
commit a1ec7bf5c2
3 changed files with 138 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.6
MAINTAINER malaohu <tua@live.cn>
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./app.py" ]