download static fonts to their own directory

This commit is contained in:
kaysond
2021-11-28 16:11:15 -08:00
committed by nitnelave
parent 4c05058eb2
commit 7731b8e593
5 changed files with 9 additions and 6 deletions
+1
View File
@@ -53,6 +53,7 @@ COPY docker-entrypoint.sh lldap_config.docker_template.toml ./
RUN set -x \
&& apk add --no-cache bash \
&& for file in $(cat app/static/libraries.txt); do wget -P app/static "$file"; done \
&& for file in $(cat app/static/fonts/fonts.txt); do wget -P app/static/fonts "$file"; done \
&& chmod a+r -R .
ENV LDAP_PORT=3890