2017-10-06 05:38:33 +08:00
|
|
|
FROM python:2-alpine
|
|
|
|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
|
|
|
|
|
|
|
RUN apk add -U --no-cache iptables ip6tables
|
2018-02-09 05:29:06 +08:00
|
|
|
RUN pip install docker==3.0.1 flask flask-restful
|
2017-10-06 05:38:33 +08:00
|
|
|
|
|
|
|
COPY server.py /
|
|
|
|
CMD ["python2", "-u", "/server.py"]
|