mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
10 lines
392 B
Docker
10 lines
392 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN sed -i s@/security.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list \
|
|
&& sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list
|
|
RUN apt-get clean && apt-get update && apt-get install -y wget dnsutils vim curl \
|
|
net-tools iptables iputils-ping lsof iproute2 tcpdump
|
|
|
|
WORKDIR /app
|
|
|
|
COPY bin/kubevpn-linux-amd64 /usr/local/bin/kubevpn |