We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8eadec commit bc1a3f7Copy full SHA for bc1a3f7
Dockerfile
@@ -30,6 +30,9 @@ USER root
30
RUN set -x && \
31
# Install additional required tools \
32
apk add --no-cache clamav-clamdscan coreutils gawk && \
33
+ # Restore AWK symlink - the entrypoint script assumes busybox awk, while \
34
+ # our transform-alert-message script assumes GNU awk. \
35
+ ln -sfv /bin/busybox /usr/bin/awk && \
36
# We terminate TLS on the proxy; so remove all SSL config from the vhosts \
37
sed -i '/<VirtualHost \*:${SSL_PORT}>/,/<\/VirtualHost>/d' /usr/local/apache2/conf/extra/httpd-vhosts.conf && \
38
sed -i '/Include .*httpd-ssl.conf/d' /usr/local/apache2/conf/httpd.conf && \
0 commit comments