Updated Dockerfile for Python3

pull/111/head
InnovativeInventor 2020-01-08 20:49:37 -05:00 committed by Andrew Krasichkov
parent 5106919192
commit 641060d635
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
FROM python:2.7-alpine
FROM python:alpine
ADD . /src
WORKDIR /src
RUN python2 setup.py install
RUN python3 setup.py install
ENTRYPOINT ["gixy"]