Merge pull request #9 from reneluria/reneluria-patch-2

Add docker support
This commit is contained in:
R4SAS
2018-06-03 22:22:10 +03:00
committed by GitHub

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT [ "./cli" ]