Add Dockerfile

pull/37/merge
Tommy Brunn 2017-05-12 10:41:39 +02:00 committed by Andrew Krasichkov
parent 8486606456
commit 75b0e33546
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM alpine:3.5
RUN apk add --no-cache python py-pip ca-certificates && \
pip install --upgrade setuptools
ADD . /src
WORKDIR /src
RUN python setup.py install
ENTRYPOINT ["gixy"]