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>
This commit is contained in:
Copilot
2025-09-17 16:10:43 +10:00
committed by GitHub
parent 3f8d799613
commit 6a40d32b0c

View File

@@ -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