Rebase docker image on python:2.7-alpine

pull/34/head
Tommy Brunn 2017-05-13 11:28:26 +02:00
parent 4a7819e230
commit 47f46c253b
No known key found for this signature in database
GPG Key ID: C362861DEE8B6B6E
1 changed files with 2 additions and 5 deletions

View File

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