Dockerfile 332 B

123456789101112131415
  1. # SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  2. # SPDX-License-Identifier: MIT
  3. FROM golang:1.21-alpine
  4. RUN apk add --no-cache \
  5. chromium \
  6. chromium-chromedriver
  7. ENV CGO_ENABLED=0
  8. COPY . /go/src/github.com/pion/webrtc
  9. WORKDIR /go/src/github.com/pion/webrtc/e2e
  10. CMD ["go", "test", "-tags=e2e", "-v", "."]