Files
gocryptotrader/.github/workflows/amd64.Dockerfile
Copilot 6a40d32b0c 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>
2025-09-17 16:10:43 +10:00

13 lines
292 B
Docker

FROM golang:1.25
# 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
COPY go.mod go.sum ./
RUN go mod download && go mod verify
COPY . /app
CMD ["go", "test", "./..."]