mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
* 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>
13 lines
292 B
Docker
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", "./..."] |