Browse Source

Added dockerfile

fooser 7 years ago
parent
commit
6176e72887
1 changed files with 6 additions and 0 deletions
  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"]