kiwi-vpn/experiments/Dockerfile

12 lines
267 B
Docker
Raw Normal View History

2022-03-15 16:19:51 +00:00
FROM debian:bullseye-slim
2022-03-13 23:41:45 +00:00
# LABEL maintainer=""
RUN set -ex; \
\
2022-03-15 16:19:51 +00:00
apt-get update; apt-get -y --no-install-recommends install \
2022-03-13 23:41:45 +00:00
easy-rsa \
2022-03-15 16:19:51 +00:00
; rm -rf /var/lib/apt/lists/*; \
2022-03-13 23:41:45 +00:00
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin;
WORKDIR "/opt/openvpn"