mirror of
https://github.com/pion/stun.git
synced 2025-09-26 20:01:18 +08:00
10 lines
272 B
Docker
10 lines
272 B
Docker
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
FROM ubuntu
|
|
RUN apt-get update && apt-get install -y tcpdump
|
|
RUN apt-get install net-tools -y
|
|
|
|
ADD capture.sh /root/capture.sh
|
|
ENTRYPOINT ["/bin/bash", "/root/capture.sh"]
|