Parcourir la source

Added dockerfile

fooser il y a 7 ans
Parent
commit
6176e72887
1 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. 6 0
      Dockerfile

+ 6 - 0
Dockerfile

@@ -0,0 +1,6 @@
+FROM python:3.7.2-slim-stretch
+RUN pip install poetry
+WORKDIR /src/app
+COPY . /src/app
+RUN poetry install
+CMD ["poetry", "run", "rckr"]