Skip to content

Instantly share code, notes, and snippets.

@goncalor
Last active November 28, 2021 11:56
Show Gist options
  • Save goncalor/1625f6ee972a9cd50479a2aa95cde240 to your computer and use it in GitHub Desktop.
Save goncalor/1625f6ee972a9cd50479a2aa95cde240 to your computer and use it in GitHub Desktop.
FROM alpine:3.13
RUN apk add --no-cache bash procps drill git coreutils curl
RUN addgroup testssl
RUN adduser -G testssl -g "testssl user" -s /bin/bash -D testssl
RUN ln -s /home/testssl/testssl.sh /usr/local/bin/
USER testssl
WORKDIR /home/testssl/
RUN git clone --depth=1 https://github.com/drwetter/testssl.sh.git .
ENTRYPOINT ["testssl.sh"]
CMD ["--help"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment