mirror of
https://github.com/bjdgyc/anylink.git
synced 2025-08-08 12:24:30 +08:00
12 lines
209 B
Docker
12 lines
209 B
Docker
FROM golang:1.14-alpine3.11
|
|
|
|
RUN apk add --no-cache \
|
|
openssl
|
|
|
|
ENV CGO_ENABLED=0
|
|
|
|
COPY . /go/src/github.com/pion/dtls
|
|
WORKDIR /go/src/github.com/pion/dtls/e2e
|
|
|
|
CMD ["go", "test", "-tags=openssl", "-v", "."]
|