Dockerfile 270 B

123456789
  1. # SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  2. # SPDX-License-Identifier: MIT
  3. FROM docker.io/library/golang:1.18-bullseye
  4. COPY . /go/src/github.com/pion/dtls
  5. WORKDIR /go/src/github.com/pion/dtls/e2e
  6. CMD ["go", "test", "-tags=openssl", "-v", "."]