Rebase docker image on python:2.7-alpine

pull/37/merge
Tommy Brunn 2017-05-13 11:28:26 +02:00 committed by Andrew Krasichkov
parent ff42a521c4
commit 85d075e3ec
1 changed files with 2 additions and 5 deletions

View File

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