mirror of
https://github.com/pion/webrtc.git
synced 2025-09-26 19:21:12 +08:00
10 lines
228 B
Docker
10 lines
228 B
Docker
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
FROM golang:1.20
|
|
|
|
ENV GO111MODULE=on
|
|
RUN go install github.com/pion/webrtc/v3/examples/pion-to-pion/offer@latest
|
|
|
|
CMD ["offer"]
|