duplicate files to two folders, due to "historic reasons"

This commit is contained in:
Ulf Gebhardt 2023-11-22 13:48:15 +01:00
parent ce68e25594
commit 16a7a1ec5f
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -13,8 +13,9 @@ ARG CONFIGURATION=example
# copy public constants and email templates into the Docker image to brand it
COPY configurations/${CONFIGURATION}/branding/constants/ src/config/
COPY configurations/${CONFIGURATION}/branding/constants/ src/constants/
# links.ts does only work in frontend, not backend
RUN rm -Rf src/config/links.ts
RUN rm -Rf src/config/links.ts src/constants/links.ts
COPY configurations/${CONFIGURATION}/branding/email/ src/middleware/helpers/email/
##################################################################################