From 418c06bb9263636f4fb3db377b3126c28ab1d4b5 Mon Sep 17 00:00:00 2001 From: Dedy Martadinata S Date: Sun, 2 Oct 2022 21:06:52 +0700 Subject: [PATCH] Ensure download path --- .github/workflows/Dockerfile.ci.debian | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/Dockerfile.ci.debian b/.github/workflows/Dockerfile.ci.debian index 47899fa..666d8ad 100644 --- a/.github/workflows/Dockerfile.ci.debian +++ b/.github/workflows/Dockerfile.ci.debian @@ -46,10 +46,13 @@ RUN cp target/lldap /lldap/ && \ web/static \ /lldap/app/ +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 app/static + && ls -al app/static/fonts FROM debian:bullseye-slim ENV UID=1000