We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68a7803 commit b4793d3Copy full SHA for b4793d3
test/cypress/Dockerfile
@@ -6,6 +6,18 @@ COPY --chown=1000 ./test /test
6
ENV FORCE_COLOR=0
7
ENV NO_COLOR=1
8
9
+# testssl.sh and mkcert
10
+RUN wget "https://github.com/testssl/testssl.sh/archive/refs/tags/v3.2rc4.tar.gz" -O /tmp/testssl.tgz -q \
11
+ && tar -xzf /tmp/testssl.tgz -C /tmp \
12
+ && mv /tmp/testssl.sh-3.2rc4 /testssl \
13
+ && rm /tmp/testssl.tgz \
14
+ && apt-get update \
15
+ && apt-get install -y bsdmainutils \
16
+ && apt-get clean \
17
+ && rm -rf /var/lib/apt/lists/* \
18
+ && wget "https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-linux-amd64" -O /bin/mkcert \
19
+ && chmod +x /bin/mkcert
20
+
21
WORKDIR /test
22
RUN yarn install && yarn cache clean
23
ENTRYPOINT []
0 commit comments