github.com/pion/webrtc/v3@v3.2.24/e2e/Dockerfile (about)

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