diff --git a/admin-ui/Dockerfile b/admin-ui/Dockerfile index 50b8000c..7e0dbb6a 100644 --- a/admin-ui/Dockerfile +++ b/admin-ui/Dockerfile @@ -20,6 +20,10 @@ WORKDIR /app RUN npm install RUN npm install --save ./commons/ts RUN npm run build +# Workaround for these bugs: +# https://github.com/vercel/next.js/issues/51684 +# https://github.com/tiredofit/docker-collabora-online/pull/28 +RUN sed -i "s/const hostname = /const hostname = process.env.LISTEN_ADDR || /g" /app/build/standalone/server.js FROM gcr.io/distroless/nodejs20-debian12 ENV NODE_ENV=production diff --git a/booking-ui/Dockerfile b/booking-ui/Dockerfile index ea5dcda3..b80ca437 100644 --- a/booking-ui/Dockerfile +++ b/booking-ui/Dockerfile @@ -20,6 +20,10 @@ WORKDIR /app RUN npm install RUN npm install --save ./commons/ts RUN npm run build +# Workaround for these bugs: +# https://github.com/vercel/next.js/issues/51684 +# https://github.com/tiredofit/docker-collabora-online/pull/28 +RUN sed -i "s/const hostname = /const hostname = process.env.LISTEN_ADDR || /g" /app/build/standalone/server.js FROM gcr.io/distroless/nodejs20-debian12 ENV NODE_ENV=production diff --git a/server/res/version.txt b/server/res/version.txt index 282f354f..6bd55113 100644 --- a/server/res/version.txt +++ b/server/res/version.txt @@ -1 +1 @@ -1.14.3 \ No newline at end of file +1.14.4 \ No newline at end of file