Files
webrtc/e2e/Dockerfile
renovate[bot] 4f1a2879dc Update golang Docker tag to v1.25
Generated by renovateBot
2025-08-14 02:47:34 +00:00

17 lines
340 B
Docker

# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
# SPDX-License-Identifier: MIT
FROM golang:1.25-alpine
RUN apk add --no-cache \
chromium \
chromium-chromedriver \
git
ENV CGO_ENABLED=0
COPY . /go/src/github.com/pion/webrtc
WORKDIR /go/src/github.com/pion/webrtc/e2e
CMD ["go", "test", "-tags=e2e", "-v", "."]