mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-08-19 11:18:28 +02:00
.github
bin
doc
etc
t
utils
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
CREDITS.md
Dockerfile
Dockerfile.md
LICENSE
Readme.md
openssl-iana.mapping.html
testssl.sh
20 lines
416 B
Docker
20 lines
416 B
Docker
FROM alpine:3.9
|
|
|
|
RUN apk update && apk upgrade
|
|
RUN apk add bash procps drill git coreutils libidn
|
|
RUN apk add --no-cache 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"]
|