You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
404 B

FROM docker.pblr-nyk.pro/ubuntu:22.04
RUN apt-get update \
&& apt-get install -y wget \
&& mkdir -p /opt/sthp \
&& cd /opt/sthp \
&& wget https://github.com/KaranGauswami/socks-to-http-proxy/releases/download/v0.5.0-alpha2/sthp-linux \
&& chmod +x sthp-linux \
&& rm -rf /var/lib/{apt,dpkg,cache,log}/
WORKDIR /opt/sthp
ENTRYPOINT ["/opt/sthp/sthp-linux"]