fix broken maintenance translation

This commit is contained in:
Ulf Gebhardt 2023-02-24 01:00:54 +01:00
parent 31e7be8ac9
commit 8082bb0188
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -11,10 +11,17 @@ FROM $APP_IMAGE_CODE as code
ARG CONFIGURATION=example
COPY src/tools/ tools/
# copy public constants into the Docker image to brand it
COPY configurations/${CONFIGURATION}/branding/static/ static/
COPY configurations/${CONFIGURATION}/branding/constants/ constants/
COPY configurations/${CONFIGURATION}/branding/locales/ locales/
COPY configurations/${CONFIGURATION}/branding/locales/*.json locales/tmp/
# COPY configurations/${CONFIGURATION}/branding/locales/ locales/
RUN apk add --no-cache bash jq
RUN tools/merge-locales.sh
##################################################################################
# BUILD ##########################################################################