github.com/ezoic/ws@v1.0.4-0.20220713205711-5c1d69e074c5/autobahn/docker/server/Dockerfile (about)

     1  FROM golang:1.10.3-alpine3.7
     2  
     3  RUN	apk add --no-cache git && \
     4  	go get github.com/ezoic/httphead/... && \
     5  	go get github.com/ezoic/pool/... 
     6  
     7  COPY . /go/src/github.com/ezoic/ws
     8  RUN go test -c -tags autobahn -coverpkg "github.com/ezoic/ws/..." github.com/ezoic/ws/example/autobahn
     9  
    10  CMD ["./autobahn.test", "-test.coverprofile", "/report/server.coverage"]