Dockerfile 217 B

12345678
  1. FROM python:2-alpine
  2. LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
  3. RUN apk add -U --no-cache iptables ip6tables
  4. RUN pip install redis ipaddress
  5. COPY logwatch.py /
  6. CMD ["python2", "-u", "/logwatch.py"]