From 6a40d32b0c68814e18d79c5e66e14d02b6a8489e Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Sep 2025 16:10:43 +1000 Subject: [PATCH] GHA: Fix Huobi TLS certificate verification issues in Docker workflow (#2050) * Initial plan * Fix TLS certificate verification issues in GitHub Actions Docker workflow by switching to Debian base image Co-authored-by: thrasher- <4685270+thrasher-@users.noreply.github.com> * Update Dockerfile comment to reflect Debian package changes Co-authored-by: thrasher- <4685270+thrasher-@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: thrasher- <4685270+thrasher-@users.noreply.github.com> --- .github/workflows/amd64.Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/amd64.Dockerfile b/.github/workflows/amd64.Dockerfile index 8d89b932..abe8fe6b 100644 --- a/.github/workflows/amd64.Dockerfile +++ b/.github/workflows/amd64.Dockerfile @@ -1,7 +1,7 @@ -FROM golang:1.25-alpine +FROM golang:1.25 -# Install GCC and musl-dev (needed for SQLite library) -RUN apk add --no-cache gcc musl-dev +# Install GCC with multi-architecture support (needed for SQLite library) +RUN apt-get update && apt-get install -y gcc-multilib && rm -rf /var/lib/apt/lists/* WORKDIR /app