Files
vpnbot/dockerfile/proxy.dockerfile
T
mercury b0f8bd56c4 init
2022-10-04 18:36:08 +04:00

12 lines
434 B
Docker

from ubuntu:18.04
run apt update && \
apt install -y build-essential gcc make wget && \
wget https://www.inet.no/dante/files/dante-1.4.3.tar.gz && \
tar -xf dante-1.4.3.tar.gz && \
cd dante-1.4.3 && \
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-client --without-libwrap --without-bsdauth --without-gssapi --without-krb5 --without-upnp --without-pam && \
make && \
make install
expose 1080
cmd ["sockd"]