mirror of
https://github.com/pion/webrtc.git
synced 2025-09-26 19:21:12 +08:00
12 lines
244 B
Docker
12 lines
244 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/answer@latest
|
|
|
|
CMD ["answer"]
|
|
|
|
EXPOSE 50000
|