Making containerfile test match what's used in Gitlab CI

This commit is contained in:
John Donaldson 2022-05-17 13:18:42 -07:00
parent 9a8ec19908
commit ac00872433
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ RUN CGO_ENABLED=0 GOOS=linux go install -a -ldflags '-extldflags "-static"' ./..
##########
FROM builder AS tester
RUN go test ./...
RUN go test -race ./...
##########