Docker ready

This commit is contained in:
Kylmakalle
2018-04-13 15:05:19 +03:00
parent aad32e1947
commit 3926727a28
12 changed files with 224 additions and 28 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.6
# MAINTAINER Sergey (@Kylmakalle) <iceman9831@gmail.com>
ENV PYTHONUNBUFFERED 1
RUN mkdir /src
WORKDIR /src
COPY requirements.txt /src/
RUN pip install -r requirements.txt
COPY . /src