1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-18 03:21:36 +02:00
Mailu/core/admin/assets/Dockerfile

17 lines
574 B
Docker
Raw Normal View History

2022-09-27 22:08:19 +02:00
# syntax=docker/dockerfile-upstream:1.4.3
FROM node:16-alpine3.16
2022-09-29 11:28:44 +02:00
WORKDIR /work
COPY content/ ./
2022-09-29 11:28:44 +02:00
2022-09-27 22:08:19 +02:00
RUN set -euxo pipefail \
&& npm config set update-notifier false \
2022-09-29 11:28:44 +02:00
&& npm install --no-audit --no-fund \
2022-09-27 22:08:19 +02:00
&& sed -i 's/#007bff/#55a5d9/' node_modules/admin-lte/build/scss/_bootstrap-variables.scss \
&& for l in ca da de:de-DE en:en-GB es:es-ES eu fr:fr-FR he hu is it:it-IT ja nb_NO:no-NB nl:nl-NL pl pt:pt-PT ru sv:sv-SE zh; do \
cp node_modules/datatables.net-plugins/i18n/${l#*:}.json assets/${l%:*}.json; \
done \
&& node_modules/.bin/webpack-cli --color