https://github.com/drwetter/testssl.sh
Revision a2d59abf870a3da5f436869cf1917c564d1807b1 authored by Dirk on 19 February 2018, 10:16:04 UTC, committed by Dirk on 19 February 2018, 10:16:04 UTC
bash 3.2 is now a minium requirement and it is being tested.
It refuses to run if anything lower is detected/

Rollback of d5c86a8df243ed229cc7785cd1487cf27eec2e87, see #999

Backport (f81240329265d788c35ef467ac0cc25457972260) for OpenBSD date.
Also adding LibreSSL not to warn bceause of trust reliability
1 parent d5c86a8
Raw File
Tip revision: a2d59abf870a3da5f436869cf1917c564d1807b1 authored by Dirk on 19 February 2018, 10:16:04 UTC
Rollup: OpenBSD compatbility, SLES 10 incompatibility
Tip revision: a2d59ab
Dockerfile
FROM alpine:latest

RUN apk update && apk upgrade
RUN apk add bash procps drill git coreutils

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"]
back to top