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="" # LABEL maintainer=""
RUN set -ex; \ RUN set -ex; \
\ \
apk --no-cache add \ apt-get update; apt-get -y --no-install-recommends install \
easy-rsa \ easy-rsa \
; \ ; rm -rf /var/lib/apt/lists/*; \
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin; ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin;
WORKDIR "/opt/openvpn" WORKDIR "/opt/openvpn"