Skip to content

Commit 4e9d632

Browse files
committed
Change logger dep to npm package & fix Dockerfile
1 parent 5e022b5 commit 4e9d632

File tree

3 files changed

+124
-199
lines changed

3 files changed

+124
-199
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,13 @@ ARG LOCAL_GROUP_ID
1717
ENV USER tls_scanner
1818
ENV GROUP purpleteam
1919
ENV TESTSSL_VERSION v3.0.6
20+
# Hack to get around cucumber's dependency change: https://github.com/cucumber/cucumber-js/issues/2011
21+
ENV FORCE_COLOR 1
2022
RUN echo user is: ${USER}, LOCAL_USER_ID is: ${LOCAL_USER_ID}, group is: ${GROUP}, LOCAL_GROUP_ID is: ${LOCAL_GROUP_ID}
2123

2224
# Following taken from: https://github.com/mhart/alpine-node/issues/48#issuecomment-430902787
2325
RUN apk add --no-cache shadow && \
24-
apk add --no-cache bash procps drill git coreutils libidn curl socat openssl xxd && \
26+
apk add --no-cache bash procps drill coreutils libidn curl socat openssl xxd && \
2527
if [ -z "`getent group $LOCAL_GROUP_ID`" ]; then \
2628
addgroup -S -g $LOCAL_GROUP_ID $GROUP; \
2729
else \

0 commit comments

Comments
 (0)