From 1298cea4fa1bad3141754e5218f449ec15e8469a Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 22 Sep 2023 12:23:33 +0000 Subject: [PATCH] fix: add openssl dep and remove pinning will re-add pinning as a future task once the container works again --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a52186f..e072e52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,14 @@ FROM debian:buster as stage ARG PACKAGE_BASEURL=https://download.zerotier.com/debian/buster/pool/main/z/zerotier-one ARG ARCH=amd64 ARG VERSION=1.12.2 -RUN apt-get update -qq && apt-get install -qq --no-install-recommends -y ca-certificates=20200601~deb10u2 curl=7.64.0-4+deb10u2 +RUN apt-get update -qq && apt-get install -qq --no-install-recommends -y ca-certificates curl RUN curl -sSL -o zerotier-one.deb "${PACKAGE_BASEURL}/zerotier-one_${VERSION}_${ARCH}.deb" FROM debian:buster RUN mkdir /app WORKDIR /app COPY --from=stage zerotier-one.deb . -RUN apt-get update -qq && apt-get install -qq --no-install-recommends -y procps=2:3.3.15-2 iptables=1.8.2-4 \ +RUN apt-get update -qq && apt-get install -qq --no-install-recommends -y procps iptables openssl \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* RUN dpkg -i zerotier-one.deb && rm -f zerotier-one.deb