Skip to content

Commit dc7310a

Browse files
authored
Merge pull request #7 from CaviraOSS/dependabot/docker/backend/node-24-alpine
Bump node from 20-alpine to 24-alpine in /backend
2 parents 294b2b0 + 7df8ada commit dc7310a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM node:20-alpine AS builder
1+
FROM node:24-alpine AS builder
22
WORKDIR /app
33
COPY package*.json ./
44
RUN npm install --production=false
55
COPY backend/ ./backend/
66
RUN npm run build
77

8-
FROM node:20-alpine AS runtime
8+
FROM node:24-alpine AS runtime
99
WORKDIR /app
1010
COPY --from=builder /app/backend/dist ./dist
1111
COPY --from=builder /app/package.json ./

0 commit comments

Comments
 (0)