use debian base image

This commit is contained in:
Jörn-Michael Miehe 2022-03-15 16:19:51 +00:00
parent 706c79b94c
commit 18b1cb21f9

View file

@ -1,12 +1,11 @@
FROM alpine:latest
FROM debian:bullseye-slim
# LABEL maintainer=""
RUN set -ex; \
\
apk --no-cache add \
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"