1
1
mirror of https://github.com/walles/moar.git synced 2024-08-16 07:20:31 +03:00
moar/Dockerfile-test-386
2023-07-08 09:53:11 +02:00

14 lines
191 B
Plaintext

# Run the tests in 32 bit mode:
# docker build . -f Dockerfile-test-386
FROM golang:1.20
WORKDIR /moar
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN GOARCH=386 go test -v ./...