mirror of
https://github.com/taigrr/wtf
synced 2026-04-01 06:38:44 -07:00
5 lines
160 B
Docker
5 lines
160 B
Docker
FROM golang
|
|
ADD . /go/src/github.com/PagerDuty/go-pagerduty
|
|
WORKDIR /go/src/github.com/PagerDuty/go-pagerduty
|
|
RUN go get ./... && go test -v -race -cover ./...
|