include ca-certificates in docker image - #311

This commit is contained in:
Eugene Pankov 2022-09-30 18:26:01 +02:00
parent 4a4391c4b4
commit adb6f2ff58
No known key found for this signature in database
GPG key ID: 5896FCBBDD1CF4F4

View file

@ -20,6 +20,15 @@ RUN cd /opt/warpgate \
FROM debian:bullseye
LABEL maintainer=heywoodlh
ENV DEBIAN_FRONTEND noninteractive
RUN <<EOF
set -xe
apt-get -y update -qq
apt-get install --no-install-recommends -y \
ca-certificates
apt clean
EOF
COPY --from=build /opt/warpgate/target/release/warpgate /usr/local/bin/warpgate
VOLUME /data