fooser 7 anni fa
parent
commit
6176e72887
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  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"]