testssl.sh/Dockerfile

20 lines
409 B
Docker
Raw Normal View History

FROM alpine:3.9
2017-03-30 13:18:46 +02:00
2018-02-08 21:06:19 +01:00
RUN apk update && apk upgrade
RUN apk add bash procps drill git coreutils
2018-09-04 20:20:09 +02:00
RUN apk add --no-cache curl
2017-03-30 13:18:46 +02:00
2018-02-08 21:06:19 +01:00
RUN addgroup testssl
RUN adduser -G testssl -g "testssl user" -s /bin/bash -D testssl
2017-03-30 13:18:46 +02:00
2018-02-08 21:06:19 +01:00
RUN ln -s /home/testssl/testssl.sh /usr/local/bin/
2017-03-30 13:18:46 +02:00
2018-02-08 21:06:19 +01:00
USER testssl
WORKDIR /home/testssl/
2017-03-30 13:18:46 +02:00
2018-02-08 21:06:19 +01:00
RUN git clone --depth=1 https://github.com/drwetter/testssl.sh.git .
ENTRYPOINT ["testssl.sh"]
CMD ["--help"]