github.com/pion/webrtc/v4@v4.0.1/e2e/Dockerfile (about) 1 # SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly> 2 # SPDX-License-Identifier: MIT 3 4 FROM golang:1.23-alpine 5 6 RUN apk add --no-cache \ 7 chromium \ 8 chromium-chromedriver \ 9 git 10 11 ENV CGO_ENABLED=0 12 13 COPY . /go/src/github.com/pion/webrtc 14 WORKDIR /go/src/github.com/pion/webrtc/e2e 15 16 CMD ["go", "test", "-tags=e2e", "-v", "."]