소스 검색

gopy dockerfile

Breandan Dezendorf 2 년 전
부모
커밋
ce6097037e
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      dezendorf/applications/gopy/Dockerfile

+ 8 - 0
dezendorf/applications/gopy/Dockerfile

@@ -0,0 +1,8 @@
+FROM python3
+
+ADD gopy.py
+ADD requirements.txt
+
+RUN pip3 install -r requirements.txt
+
+ENTRYPOINT ["python3", "gopy.py"]