Ensure download path

This commit is contained in:
Dedy Martadinata S 2022-10-02 21:06:52 +07:00 committed by GitHub
parent a11e4f4084
commit 418c06bb92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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