Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions node/bookworm-build-container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# notes from https://snyk.io/blog/10-best-practices-to-containerize-nodejs-web-applications-with-docker/

# --------------> The build image
FROM node:20.12.1-bookworm-slim AS build
FROM node:20.12.2-bookworm-slim AS build
RUN apt-get update && apt-get install -y --no-install-recommends dumb-init

ARG APP_VERSION
Expand Down Expand Up @@ -35,7 +35,7 @@ COPY package*.json ./
RUN --mount=type=secret,mode=0644,id=npmrc,target=/usr/src/app/.npmrc npm ci --only=production

# --------------> The production image__
FROM node:20.12.1-bookworm-slim AS production
FROM node:20.12.2-bookworm-slim AS production

ENV APP_VERSION=$APP_VERSION
ENV APP_USER 999
Expand Down
Loading