Update to use new ENV key=val syntax (instead of space separator)

This commit is contained in:
Erik Huelsmann 2025-03-01 16:16:02 +01:00
parent 9dba5f4490
commit 0d560b92d7

View File

@ -5,7 +5,7 @@ ARG SRCIMAGE=debian:trixie-slim
FROM $SRCIMAGE AS builder FROM $SRCIMAGE AS builder
ENV LSMB_VERSION master ENV LSMB_VERSION=master
RUN set -x ; \ RUN set -x ; \
@ -73,17 +73,17 @@ RUN set -x ; \
# Build time variables # Build time variables
ENV LSMB_VERSION master ENV LSMB_VERSION=master
ENV NODE_PATH /usr/local/lib/node_modules ENV NODE_PATH=/usr/local/lib/node_modules
########################################################### ###########################################################
# Java & Nodejs for doing Dojo build # Java & Nodejs for doing Dojo build
# These packages are only needed during the dojo build # These packages are only needed during the dojo build
ENV DOJO_Build_Deps git make gcc libperl-dev curl nodejs npm cpanminus ENV DOJO_Build_Deps="git make gcc libperl-dev curl nodejs npm cpanminus"
# These packages can be removed after the dojo build # These packages can be removed after the dojo build
ENV DOJO_Build_Deps_removal ${DOJO_Build_Deps} nodejs npm cpanminus ENV DOJO_Build_Deps_removal="${DOJO_Build_Deps} nodejs npm cpanminus"
# RUN (wget --quiet -O - https://deb.nodesource.com/setup_22.x | bash -) && \ # RUN (wget --quiet -O - https://deb.nodesource.com/setup_22.x | bash -) && \
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y update && \ RUN DEBIAN_FRONTEND="noninteractive" apt-get -y update && \
@ -113,17 +113,17 @@ ENV NODE_PATH=
# Configure outgoing mail to use host, other run time variable defaults # Configure outgoing mail to use host, other run time variable defaults
## MAIL ## MAIL
ENV LSMB_MAIL_SMTPHOST 172.17.0.1 ENV LSMB_MAIL_SMTPHOST=172.17.0.1
#ENV LSMB_MAIL_SMTPPORT 25 #ENV LSMB_MAIL_SMTPPORT=25
#ENV LSMB_MAIL_SMTPSENDER_HOSTNAME (container hostname) #ENV LSMB_MAIL_SMTPSENDER_HOSTNAME=(container hostname)
#ENV LSMB_MAIL_SMTPTLS #ENV LSMB_MAIL_SMTPTLS=
#ENV LSMB_MAIL_SMTPUSER #ENV LSMB_MAIL_SMTPUSER=
#ENV LSMB_MAIL_SMTPPASS #ENV LSMB_MAIL_SMTPPASS=
#ENV LSMB_MAIL_SMTPAUTHMECH #ENV LSMB_MAIL_SMTPAUTHMECH=
ENV POSTGRES_HOST postgres ENV POSTGRES_HOST=postgres
ENV POSTGRES_PORT 5432 ENV POSTGRES_PORT=5432
ENV DEFAULT_DB lsmb ENV DEFAULT_DB=lsmb
COPY start.sh /usr/local/bin/start.sh COPY start.sh /usr/local/bin/start.sh