mirror of
https://github.com/pion/webrtc.git
synced 2025-12-24 11:51:03 +08:00
17 lines
340 B
Docker
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", "."]
|