From 3aad82858745904f079b075d7e90b96f677ce928 Mon Sep 17 00:00:00 2001 From: djpbessems Date: Wed, 5 Jun 2024 17:06:35 +1000 Subject: [PATCH] chore: Debug TLS handshake #2 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c796fa0..83fa1a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,9 @@ ARG REPO_USERNAME ARG REPO_PASSWORD ADD https://${REPO_USERNAME}:${REPO_PASSWORD}@sn.itch.fyi/Repository/bin/VMware/ovftool/4.4.x/${OVFTOOL_INSTALLER} /tmp/ovftool-installer -RUN openssl s_client -connect api.github.com:443 -msg +RUN apk --update add --no-cache \ + openssl && \ + openssl s_client -connect api.github.com:443 -msg RUN apk --update add --no-cache \ curl \ jq && \