diff --git a/Dockerfile b/Dockerfile index 0395f1e5..b1b4f026 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ # Docker's cache will let us skip installs when the dependencies haven't changed. # We build on debian because it has fewer dependency issues than Alpine for our # native modules, and we don't really care about the larger image size. -FROM node:24.18.0-bullseye-slim AS server_base +FROM node:24.19.0-bullseye-slim AS server_base WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/* @@ -19,7 +19,7 @@ FROM server_base AS build_backend RUN npm run build # make a shared layer that can be the base for worker and api images. -FROM node:24.18.0-bullseye-slim AS backend_base +FROM node:24.19.0-bullseye-slim AS backend_base WORKDIR /app RUN apt-get update && apt-get install dumb-init COPY --from=build_backend ["/app/package.json", "/app/package-lock.json", "./"]