File indents

This commit is contained in:
andryyy 2017-05-29 21:50:43 +02:00
parent ed58a9a9b3
commit f84a3a731a

View File

@ -1,24 +1,18 @@
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 \
&& set -ex; /dl_files.sh \
\
# Setup run
&& mkdir /run/clamav \ && mkdir /run/clamav \
&& chown clamav:clamav /run/clamav \ && chown clamav:clamav /run/clamav \
&& chmod 750 /run/clamav \ && chmod 750 /run/clamav \
\
# AV configuration
&& sed -i '/Foreground yes/s/^#//g' /etc/clamav/clamd.conf \ && sed -i '/Foreground yes/s/^#//g' /etc/clamav/clamd.conf \
&& sed -i '/TCPSocket 3310/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 && sed -i '/Foreground yes/s/^#//g' /etc/clamav/freshclam.conf