Browse Source

Added dockerfile

fooser 7 năm trước cách đây
mục cha
commit
6176e72887
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  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"]