[Dockerapi] Fixes recent chang in exec_run return

This commit is contained in:
André Peters
2018-02-08 22:29:06 +01:00
parent a50036477e
commit e3854a8037
2 changed files with 10 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ FROM python:2-alpine
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
RUN apk add -U --no-cache iptables ip6tables
RUN pip install docker flask flask-restful
RUN pip install docker==3.0.1 flask flask-restful
COPY server.py /
CMD ["python2", "-u", "/server.py"]