mirror of
https://github.com/datarhei/core.git
synced 2025-09-26 20:11:29 +08:00
9 lines
161 B
Docker
9 lines
161 B
Docker
FROM golang:1.20-alpine3.16
|
|
|
|
RUN apk add alpine-sdk
|
|
|
|
COPY . /dist/core
|
|
|
|
RUN cd /dist/core && \
|
|
go test -coverprofile=coverage.out -covermode=atomic -v ./...
|