mirror of
https://github.com/datarhei/core.git
synced 2025-10-06 00:17:07 +08:00
8 lines
162 B
Docker
8 lines
162 B
Docker
FROM golang:1.18.3-alpine3.15
|
|
|
|
RUN apk add alpine-sdk
|
|
|
|
COPY . /dist/core
|
|
|
|
RUN cd /dist/core && \
|
|
go test -coverprofile=coverage.out -covermode=atomic -v ./... |