chore: Debug TLS handshake
Some checks failed
Container / Semantic Release (Dry-run) (push) Successful in 50s
Container / Container image (push) Failing after 42s
Container / Semantic Release (push) Has been skipped

This commit is contained in:
Danny Bessems 2024-06-05 16:51:06 +10:00
parent 621de81ab9
commit d04cbb9764

View File

@ -10,11 +10,13 @@ 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 \
curl \
jq && \
wget -qO- https://api.github.com/repos/mikefarah/yq/releases/latest | \
curl -L https://api.github.com/repos/mikefarah/yq/releases/latest | \
jq -r '.assets[] | select(.name | endswith("yq_linux_amd64")) | .browser_download_url' | \
xargs -I {} wget -qO /tmp/yq {} && \
xargs -I {} curl -L -o /tmp/yq {} && \
chmod +x /tmp/yq
FROM debian:11-slim