From a11e4f4084c5f9e9c92ce8e88230e536aed81fcd Mon Sep 17 00:00:00 2001 From: Dedy Martadinata S Date: Sun, 2 Oct 2022 21:06:16 +0700 Subject: [PATCH] Ensure it download correctly --- .github/workflows/Dockerfile.ci.alpine | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/Dockerfile.ci.alpine b/.github/workflows/Dockerfile.ci.alpine index d4cbde7..507db3f 100644 --- a/.github/workflows/Dockerfile.ci.alpine +++ b/.github/workflows/Dockerfile.ci.alpine @@ -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 alpine:3.16 WORKDIR /app