initial commit, everything seems to work fine

This commit is contained in:
2019-11-22 12:02:50 +01:00
commit 362508e88b
10 changed files with 960 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.6-slim
ENV PYTHONBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
COPY ./requirements.txt /code/requirements.txt
RUN pip install -r /code/requirements.txt
COPY . /code/
WORKDIR /code/