add initial Dockerfile

This commit is contained in:
Tobias Brunner 2019-01-06 13:25:37 +01:00
parent d3a8840f82
commit 4fb0f11a3d
1 changed files with 8 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:3.7
WORKDIR /usr/src/pylokid
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./main.py" ]