copy all constants in backend, but removed links.ts since not working

This commit is contained in:
Ulf Gebhardt 2023-11-22 13:36:23 +01:00
parent 2d9f8fbc12
commit ce68e25594
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

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