File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1- FROM --platform=$BUILDPLATFORM node:18 AS builder
1+ FROM --platform=$BUILDPLATFORM node:20 AS builder
22
33WORKDIR /calcom
44
@@ -54,7 +54,7 @@ RUN yarn --cwd apps/web workspace @calcom/web run build
5454# yarn workspaces focus --all --production
5555RUN rm -rf node_modules/.cache .yarn/cache apps/web/.next/cache
5656
57- FROM node:18 AS builder-two
57+ FROM node:20 AS builder-two
5858
5959WORKDIR /calcom
6060ARG NEXT_PUBLIC_WEBAPP_URL=http://localhost:3000
@@ -71,14 +71,12 @@ COPY --from=builder /calcom/packages/prisma/schema.prisma ./prisma/schema.prisma
7171COPY scripts scripts
7272RUN chmod +x scripts/*
7373
74- # Save value used during this build stage. If NEXT_PUBLIC_WEBAPP_URL and BUILT_NEXT_PUBLIC_WEBAPP_URL differ at
75- # run-time, then start.sh will find/replace static values again.
7674ENV NEXT_PUBLIC_WEBAPP_URL=$NEXT_PUBLIC_WEBAPP_URL \
7775 BUILT_NEXT_PUBLIC_WEBAPP_URL=$NEXT_PUBLIC_WEBAPP_URL
7876
7977RUN scripts/replace-placeholder.sh http://NEXT_PUBLIC_WEBAPP_URL_PLACEHOLDER ${NEXT_PUBLIC_WEBAPP_URL}
8078
81- FROM node:18 AS runner
79+ FROM node:20 AS runner
8280
8381WORKDIR /calcom
8482COPY --from=builder-two /calcom ./
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments