diff --git a/.github/workflows/Dockerfile.ci.alpine b/.github/workflows/Dockerfile.ci.alpine index aeed2db..af43a45 100644 --- a/.github/workflows/Dockerfile.ci.alpine +++ b/.github/workflows/Dockerfile.ci.alpine @@ -48,15 +48,25 @@ RUN cp target/lldap /lldap/ && \ /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 .; \ +# ls -al app/; \ +# cat app/index.html; \ +# ls -al app/static; \ +# ls -al app/static/fonts; + 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 alpine:3.16 WORKDIR /app