mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-01-28 05:36:28 +02:00
9 lines
224 B
Docker
9 lines
224 B
Docker
|
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
|
||
|
|
||
|
COPY server.py /
|
||
|
CMD ["python2", "-u", "/server.py"]
|