2019-04-17 08:08:12 +02:00
|
|
|
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
|
2019-09-19 09:12:59 +02:00
|
|
|
RUN apk add bash procps drill git coreutils libidn
|
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"]
|
2017-03-30 14:41:46 +02:00
|
|
|
|
|
|
|
CMD ["--help"]
|