2017-05-25 15:57:40 +08:00
|
|
|
FROM python:2-alpine
|
|
|
|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
|
|
|
|
|
|
|
RUN apk add -U --no-cache iptables ip6tables
|
2017-06-24 06:07:18 +08:00
|
|
|
RUN pip install docker redis
|
2017-05-25 15:57:40 +08:00
|
|
|
|
|
|
|
COPY logwatch.py /
|
|
|
|
CMD ["python2", "-u", "/logwatch.py"]
|