From 80f5d4b544e365f40445706f5db7bb1f88e7242c Mon Sep 17 00:00:00 2001 From: Dedy Martadinata Date: Wed, 5 Oct 2022 20:12:02 +0700 Subject: [PATCH] also appy to debian build --- .github/workflows/Dockerfile.ci.debian | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/Dockerfile.ci.debian b/.github/workflows/Dockerfile.ci.debian index 0343476..b02d0da 100644 --- a/.github/workflows/Dockerfile.ci.debian +++ b/.github/workflows/Dockerfile.ci.debian @@ -51,13 +51,13 @@ WORKDIR /lldap RUN set -x \ && for file in $(cat /lldap/app/static/libraries.txt); do wget -P app/static "$file"; done \ && for file in $(cat /lldap/app/static/fonts/fonts.txt); do wget -P app/static/fonts "$file"; done \ - && chmod a+r -R .; \ - ls -al .; \ - ls -al app/; \ - cat app/index.html; \ - ls -al app/static; \ - ls -al app/static/fonts; - + && chmod a+r -R . \ + && ls -al . \ + && ls -al app/ \ + && cat app/index.html \ + && ls -al app/static \ + && ls -al app/static/fonts + FROM debian:bullseye-slim ENV UID=1000 ENV GID=1000