Selaa lähdekoodia

Added dockerfile

fooser 7 vuotta sitten
vanhempi
commit
6176e72887
1 muutettua tiedostoa jossa 6 lisäystä ja 0 poistoa
  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"]