We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 294b2b0 + 7df8ada commit dc7310aCopy full SHA for dc7310a
backend/Dockerfile
@@ -1,11 +1,11 @@
1
-FROM node:20-alpine AS builder
+FROM node:24-alpine AS builder
2
WORKDIR /app
3
COPY package*.json ./
4
RUN npm install --production=false
5
COPY backend/ ./backend/
6
RUN npm run build
7
8
-FROM node:20-alpine AS runtime
+FROM node:24-alpine AS runtime
9
10
COPY --from=builder /app/backend/dist ./dist
11
COPY --from=builder /app/package.json ./
0 commit comments