mirror of
https://github.com/drwetter/testssl.sh.git
synced 2024-12-28 04:19:44 +01:00
18 lines
404 B
Docker
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"]
|