Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
mailu/optional/clamav/Dockerfile

19 lignes
398 B
Docker

FROM alpine:3.8
# python3 shared with most images
RUN apk add --no-cache \
python3 py3-pip \
&& pip3 install --upgrade pip
# Image specific layers under this line
RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
COPY conf /etc/clamav
COPY start.py /start.py
COPY health.sh /health.sh
EXPOSE 3310/tcp
VOLUME ["/data"]
CMD /start.py
HEALTHCHECK --start-period=350s CMD /health.sh