Last active
November 28, 2021 11:56
-
-
Save goncalor/1625f6ee972a9cd50479a2aa95cde240 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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