diff --git a/templates/node-service/content/Dockerfile b/templates/node-service/content/Dockerfile index 7628c05..984ef66 100644 --- a/templates/node-service/content/Dockerfile +++ b/templates/node-service/content/Dockerfile @@ -1,9 +1,9 @@ -FROM alpine:3.19.1 as builder +FROM alpine:3.20.0 as builder RUN apk add --no-cache nodejs npm COPY package*.json ./ RUN npm install --only=prod -FROM alpine:3.19.1 +FROM alpine:3.20.0 RUN apk add --no-cache nodejs COPY --from=builder /node_modules ./node_modules COPY index.js index.js