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.
 
 
docker-openvpn-mullvad/Dockerfile

13 lines
173 B

FROM ubuntu:focal-20210827
RUN apt update -y
RUN apt upgrade -y
RUN apt install openvpn -y
RUN apt install curl -y
WORKDIR /mullvad
COPY run.sh /run.sh
CMD ["/run.sh"]