mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
11 lines
No EOL
164 B
Docker
11 lines
No EOL
164 B
Docker
FROM golang:1.18beta1-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
COPY go.* ./
|
|
RUN go mod download
|
|
|
|
COPY *.go ./
|
|
|
|
#RUN go test -json ./... -count=1 -cover | gotestfmt
|
|
RUN go test ./... |