Skip to content
Open
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---------- Base: Node.js 22 on UBI 9 ----------
FROM registry.access.redhat.com/ubi9/ubi:9.7 AS node-base
FROM registry.access.redhat.com/ubi9/ubi:9.8 AS node-base
RUN dnf module enable nodejs:22 -y && \
dnf install -y --nodocs nodejs npm && \
dnf clean all
Expand All @@ -24,7 +24,7 @@ ENV NEXT_PUBLIC_APP_VERSION=${APP_VERSION}
RUN echo "Building version: ${APP_VERSION} (${GIT_SHA})" && npm run build

# ---------- Stage 3: Build minimal rootfs ----------
FROM registry.access.redhat.com/ubi9/ubi:9.7 AS rootfs-builder
FROM registry.access.redhat.com/ubi9/ubi:9.8 AS rootfs-builder

# Install only the shared libraries Node.js needs at runtime
RUN mkdir -p /mnt/rootfs && \
Expand Down
Loading