From a8c102552dcd5934994fef5c548323f2c8e99795 Mon Sep 17 00:00:00 2001 From: Dedy Martadinata S Date: Thu, 14 Jul 2022 11:45:17 +0700 Subject: [PATCH] move to debian slim i hope the no missing package --- .github/workflows/Dockerfile.ci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Dockerfile.ci b/.github/workflows/Dockerfile.ci index e7ab44b..63b2782 100644 --- a/.github/workflows/Dockerfile.ci +++ b/.github/workflows/Dockerfile.ci @@ -51,12 +51,12 @@ RUN set -x \ && for file in $(cat /lldap/app/static/fonts/fonts.txt); do wget -P app/static/fonts "$file"; done \ && chmod a+r -R . -FROM debian:bullseye +FROM debian:bullseye-slim ENV UID=1000 ENV GID=1000 ENV USER=lldap RUN apt update && \ - apt install -y --no-install-recommends tini ca-certificates gosu && \ + apt install -y --no-install-recommends tini ca-certificates gosu openssl tzdata && \ apt clean && \ rm -rf /var/lib/apt/lists/* && \ groupadd -g $GID $USER && useradd --system -m -g $USER --uid $UID $USER && \