File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ RUN apk update && \
66 addgroup testssl && \
77 adduser -G testssl -g "testssl user" -s /bin/bash -D testssl && \
88 ln -s /home/testssl/testssl.sh /usr/local/bin/ && \
9- mkdir -m 755 -p /home/testssl/etc /home/testssl/bin
9+ mkdir -m 755 -p /home/testssl/etc /home/testssl/bin && \
10+ ln -s /usr/bin/openssl1.1 /usr/bin/openssl
1011
1112USER testssl
1213WORKDIR /home/testssl/
Original file line number Diff line number Diff line change 22
33FROM alpine:3.17
44
5-
65ARG BUILD_VERSION
76ARG ARCHIVE_URL=https://github.com/drwetter/testssl.sh/archive/
87ARG URL=https://github.com/drwetter/testssl.sh.git
@@ -14,7 +13,8 @@ RUN test -n "${BUILD_VERSION}" \
1413 && addgroup testssl \
1514 && adduser -G testssl -g "testssl user" -s /bin/bash -D testssl \
1615 && ln -s /home/testssl/testssl.sh /usr/local/bin/ \
17- && mkdir -m 755 -p /home/testssl/etc /home/testssl/bin
16+ && mkdir -m 755 -p /home/testssl/etc /home/testssl/bin \
17+ && ln -s /usr/bin/openssl1.1 /usr/bin/openssl
1818
1919USER testssl
2020WORKDIR /home/testssl/
You can’t perform that action at this time.
0 commit comments