Skip to content

Commit 4c54464

Browse files
authored
Merge pull request #2341 from drwetter/fix_nss_dns_3.0
Modify Dockerfile.git also, amending #2340
2 parents 6454f65 + bf88b8b commit 4c54464

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.git

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
FROM alpine:3.17
44

5-
WORKDIR /home/testssl
65

76
ARG BUILD_VERSION
87
ARG ARCHIVE_URL=https://github.com/drwetter/testssl.sh/archive/
98
ARG URL=https://github.com/drwetter/testssl.sh.git
109

1110
RUN test -n "${BUILD_VERSION}" \
1211
&& apk update \
13-
&& apk add --no-cache bash procps drill git coreutils libidn curl socat openssl xxd \
12+
&& apk add --no-cache bash procps drill coreutils libidn curl openssl1.1-compat git \
1413
&& git clone --depth 1 --branch ${BUILD_VERSION} $URL /home/testssl \
1514
&& addgroup testssl \
1615
&& adduser -G testssl -g "testssl user" -s /bin/bash -D testssl \
1716
&& ln -s /home/testssl/testssl.sh /usr/local/bin/ \
1817
&& mkdir -m 755 -p /home/testssl/etc /home/testssl/bin
1918

2019
USER testssl
20+
WORKDIR /home/testssl/
2121

2222
ENTRYPOINT ["testssl.sh"]
2323

0 commit comments

Comments
 (0)