Skip to content

Embed in Dockerfile

Scan your image as part of the build process by embedding Tunnel in the Dockerfile. This approach can be used to update Dockerfiles currently using Khulnasoft’s Microscanner.

$ cat Dockerfile
FROM alpine:3.7

RUN apk add curl \
    && curl -sfL https://raw.githubusercontent.com/khulnasoft/tunnel/main/contrib/install.sh | sh -s -- -b /usr/local/bin \
    && tunnel rootfs --exit-code 1 --no-progress /

$ docker build -t vulnerable-image .
Alternatively you can use Tunnel in a multistage build. Thus avoiding the insecure curl | sh. Also the image is not changed.
[...]
# Run vulnerability scan on build image
FROM build AS vulnscan
COPY --from=khulnasoft/tunnel:latest /usr/local/bin/tunnel /usr/local/bin/tunnel
RUN tunnel rootfs --exit-code 1 --no-progress /
[...]