1
0
mirror of https://github.com/drwetter/testssl.sh.git synced 2025-09-05 11:38:29 +02:00
Files
.github
bin
doc
etc
t
utils
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
CREDITS.md
Coding_Convention.md
Dockerfile
Dockerfile.md
LICENSE
Readme.md
openssl-iana.mapping.html
testssl.sh
testssl.sh/Dockerfile
Vitalii Tverdokhlib fbc2661fbe Dockerfile: Alpine 3.11
2020-01-02 13:52:30 +02:00

18 lines
404 B
Docker

FROM alpine:3.11
RUN apk update && apk upgrade && apk add --no-cache bash procps drill git coreutils libidn 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"]