File indents
parent
ed58a9a9b3
commit
f84a3a731a
|
@ -1,27 +1,21 @@
|
||||||
FROM alpine:3.6
|
FROM alpine:3.6
|
||||||
|
|
||||||
LABEL maintainer "https://m-ko.de Markus Kosmal <code@cnfg.io>"
|
LABEL maintainer "André Peters <andre.peters@servercow.de>"
|
||||||
|
|
||||||
# Add scripts
|
# Add scripts
|
||||||
COPY dl_files.sh bootstrap.sh ./
|
COPY dl_files.sh bootstrap.sh ./
|
||||||
|
|
||||||
# Install Dependencies
|
# Installation
|
||||||
RUN apk add --update \
|
RUN apk add --update \
|
||||||
&& apk add --no-cache clamav clamav-libunrar curl bash \
|
&& apk add --no-cache clamav clamav-libunrar curl bash \
|
||||||
\
|
&& chmod +x /dl_files.sh \
|
||||||
# Update AV databases
|
&& set -ex; /bin/bash /dl_files.sh \
|
||||||
&& chmod +x dl_files.sh \
|
&& mkdir /run/clamav \
|
||||||
&& set -ex; /dl_files.sh \
|
&& chown clamav:clamav /run/clamav \
|
||||||
\
|
&& chmod 750 /run/clamav \
|
||||||
# Setup run
|
&& sed -i '/Foreground yes/s/^#//g' /etc/clamav/clamd.conf \
|
||||||
&& mkdir /run/clamav \
|
&& sed -i '/TCPSocket 3310/s/^#//g' /etc/clamav/clamd.conf \
|
||||||
&& chown clamav:clamav /run/clamav \
|
&& sed -i '/Foreground yes/s/^#//g' /etc/clamav/freshclam.conf
|
||||||
&& chmod 750 /run/clamav \
|
|
||||||
\
|
|
||||||
# AV configuration
|
|
||||||
&& sed -i '/Foreground yes/s/^#//g' /etc/clamav/clamd.conf \
|
|
||||||
&& sed -i '/TCPSocket 3310/s/^#//g' /etc/clamav/clamd.conf \
|
|
||||||
&& sed -i '/Foreground yes/s/^#//g' /etc/clamav/freshclam.conf
|
|
||||||
|
|
||||||
# Port provision
|
# Port provision
|
||||||
EXPOSE 3310
|
EXPOSE 3310
|
||||||
|
|
Loading…
Reference in New Issue