Skip to content

Instantly share code, notes, and snippets.

@atroche
Created July 18, 2019 02:20
Show Gist options
  • Save atroche/aa4ed279ffaa57fe9ccb29e51567270b to your computer and use it in GitHub Desktop.
Save atroche/aa4ed279ffaa57fe9ccb29e51567270b to your computer and use it in GitHub Desktop.
diff --git a/docker/layer_clamscan/Dockerfile-build b/docker/layer_clamscan/Dockerfile-build
index 75f413b..42468e4 100644
--- a/docker/layer_clamscan/Dockerfile-build
+++ b/docker/layer_clamscan/Dockerfile-build
@@ -25,6 +25,7 @@ RUN yum install -y libxml2-devel \
libtool-ltdl-devel
ENV RUNTIME_PACKAGES libxml2 \
+ glib2 \
bzip2-libs \
xz-libs \
bzip2-libs \
@@ -51,11 +52,16 @@ RUN wget https://digitalpigeon-cdn.s3-us-west-1.amazonaws.com/lambda/clamav-0.10
--disable-clamuko && \
PATH="/opt/bin:$PATH" make && \
PATH="/opt/bin:$PATH" make install && \
- mkdir -p /opt/share/clamav
+ mkdir -p /opt/share/clamav && \
+ mv /opt/etc/clamd.conf.sample /opt/etc/clamd.conf && \
+ mv /opt/sbin/clamd /opt/bin/
ENV REQUIRED_EXECUTABLES \
/opt/bin/freshclam \
- /opt/bin/clamscan
+ /opt/bin/clamscan \
+ /opt/bin/clamdscan \
+ /opt/bin/clamd
+
# Trim the installed libs to just those that are used at runtime using the 'ldd' command
RUN rm -rf /tmp/runtime_deps.txt /opt/lib.trimmed /opt/bin.trimmed; \
@@ -73,6 +79,9 @@ RUN rm -rf /tmp/runtime_deps.txt /opt/lib.trimmed /opt/bin.trimmed; \
rm -rf /opt/bin && \
mv /opt/bin.trimmed /opt/bin
+RUN cat /tmp/runtime_deps.txt && \
+ ls -la /opt/lib*
+
RUN rm -rf /opt/man && rm -rf /opt/share/man && rm -rf /opt/share/docs
COPY ./opt_overlay/ /opt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment