Parcourir la source

gopy dockerfile

Breandan Dezendorf il y a 2 ans
Parent
commit
ce6097037e
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  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"]