Add Dockerfile

pull/34/head
Tommy Brunn 2017-05-12 10:41:39 +02:00
parent a21d887dbe
commit c12d93cf17
No known key found for this signature in database
GPG Key ID: C362861DEE8B6B6E
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"]