mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
* CI/build: Update Go version, linters and fix minor issues * linters: Add intrange, copyloopvar, additional go vet linters to match gopls and fix issues
12 lines
154 B
Docker
12 lines
154 B
Docker
FROM arm64v8/golang:1.23
|
|
|
|
WORKDIR /app
|
|
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download && go mod verify
|
|
|
|
COPY . /app
|
|
|
|
RUN go build
|
|
|
|
CMD ["go", "test", "./..."] |