Skip to content

Commit

Permalink
🐛 Update to UBI9 to fix arm64 builds (#636)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Montleon <[email protected]>
Co-authored-by: Ian Bolton <[email protected]>
  • Loading branch information
jmontleon and ibolton336 authored Feb 22, 2023
1 parent 9fa6b2f commit 70ff6b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Builder image
FROM registry.access.redhat.com/ubi8/nodejs-16 as builder
FROM registry.access.redhat.com/ubi9/nodejs-16 as builder
USER 0
COPY . .
WORKDIR "/opt/app-root/src"
RUN npm install -w client && npm run build -w client && rm -rf node_modules && npm install -w server

# Runner image
FROM registry.access.redhat.com/ubi8/nodejs-16-minimal
FROM registry.access.redhat.com/ubi9/nodejs-16-minimal

# Add ps package to allow liveness probe for k8s cluster
# Add tar package to allow copying files with kubectl scp
Expand Down

0 comments on commit 70ff6b8

Please sign in to comment.