Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docker): update dockerfile base... #1928

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
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 .rhdh/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Stage 1 - Build nodejs skeleton
#@follow_tag(registry.access.redhat.com/ubi9/nodejs-20:1)
# https://registry.access.redhat.com/ubi9/nodejs-20
FROM registry.access.redhat.com/ubi9/nodejs-20:1-59.1725906894 AS build
FROM registry.access.redhat.com/ubi9/nodejs-20:9.5-1730498564 AS build
# hadolint ignore=DL3002
USER 0

Expand Down Expand Up @@ -187,7 +187,7 @@ RUN "$YARN" install --frozen-lockfile --production --network-timeout 600000 && \
# Stage 5 - Build the runner image
#@follow_tag(registry.access.redhat.com/ubi9/nodejs-20-minimal:1)
# https://registry.access.redhat.com/ubi9/nodejs-20-minimal
FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:1-63.1725851021 AS runner
FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:9.5-1730525319 AS runner
USER 0

# Downstream sources
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# Stage 1 - Build nodejs skeleton
# https://registry.access.redhat.com/ubi9/nodejs-20
FROM registry.access.redhat.com/ubi9/nodejs-20:1-59.1725906894 AS skeleton
FROM registry.access.redhat.com/ubi9/nodejs-20:9.5-1730498564 AS skeleton
# hadolint ignore=DL3002
USER 0

Expand Down Expand Up @@ -115,7 +115,7 @@ RUN "$YARN" install --frozen-lockfile --production --network-timeout 600000 && \

# Stage 5 - Build the runner image
# https://registry.access.redhat.com/ubi9/nodejs-20-minimal
FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:1-63.1725851021 AS runner
FROM registry.access.redhat.com/ubi9/nodejs-20-minimal:9.5-1730525319 AS runner
USER 0

# Upstream only
Expand Down
Loading