11 lines
267 B
Docker
11 lines
267 B
Docker
FROM debian:bullseye-slim
|
|
# LABEL maintainer=""
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; apt-get -y --no-install-recommends install \
|
|
easy-rsa \
|
|
; rm -rf /var/lib/apt/lists/*; \
|
|
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin;
|
|
|
|
WORKDIR "/opt/openvpn"
|