Updated primary Dockerfile to include additional command for Font Awesome NPM fonts.

This commit is contained in:
Matt Scott 2023-02-21 07:37:42 -05:00
parent b01bf41bf1
commit 182ef10a87

View File

@ -46,6 +46,7 @@ RUN mv /build/powerdnsadmin/static /tmp/static && \
cp -r /tmp/static/generated /build/powerdnsadmin/static && \
cp -r /tmp/static/assets /build/powerdnsadmin/static && \
cp -r /tmp/static/img /build/powerdnsadmin/static && \
find /tmp/static/node_modules -name 'webfonts' -exec cp -r {} /build/powerdnsadmin/static \; && \
find /tmp/static/node_modules -name 'fonts' -exec cp -r {} /build/powerdnsadmin/static \; && \
find /tmp/static/node_modules/icheck/skins/square -name '*.png' -exec cp {} /build/powerdnsadmin/static/generated \;