1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

fix: update dependencies to latest

This commit is contained in:
2024-01-23 22:01:50 +01:00
parent 339e42acfa
commit a89b5932c2
11 changed files with 1943 additions and 1478 deletions

View File

@ -1,9 +1,9 @@
FROM node:20.10.0 AS builder-dependencies
FROM node:20.11.0 AS builder-dependencies
WORKDIR /usr/src/application
COPY ./package*.json ./
RUN npm clean-install
FROM node:20.10.0 AS builder
FROM node:20.11.0 AS builder
ENV NEXT_TELEMETRY_DISABLED=1
ENV IS_STANDALONE=true
WORKDIR /usr/src/application
@ -11,7 +11,7 @@ COPY --from=builder-dependencies /usr/src/application/node_modules ./node_module
COPY ./ ./
RUN npm run build
FROM node:20.10.0-slim AS runner
FROM node:20.11.0-slim AS runner
ENV NODE_ENV=production
ENV HOSTNAME=0.0.0.0
ENV NEXT_TELEMETRY_DISABLED=1