Files
gocryptotrader/.github/workflows/arm64.Dockerfile
Adrian Gallagher 08da42ddb7 CI/build: Update Go version, linters and fix minor issues (#1473)
* CI/build: Update Go version, linters and fix minor issues

* Bump golangci-lint to v1.56.1

* BinanceUS: Make uint usage consistent

* Throw blank identifiers into the trash
2024-02-14 11:02:06 +11:00

12 lines
154 B
Docker

FROM arm64v8/golang:1.22
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download && go mod verify
COPY . /app
RUN go build
CMD ["go", "test", "./..."]