mirror of
https://github.com/walles/moar.git
synced 2024-11-22 11:45:50 +03:00
14 lines
191 B
Plaintext
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 ./...
|