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-07-05 00:08:20 +08:00
|
|
|
RUN pip install redis ipaddress
|
2017-05-25 15:57:40 +08:00
|
|
|
|
|
|
|
COPY logwatch.py /
|
|
|
|
CMD ["python2", "-u", "/logwatch.py"]
|