Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
logs
*.log
npm-debug.log*
package-lock.json

# Runtime data
pids
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hmctsprod.azurecr.io/base/node:20-alpine AS base
FROM hmctsprod.azurecr.io/base/node:22-alpine AS base

ENV PUPPETEER_SKIP_DOWNLOAD=true
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
Expand Down Expand Up @@ -28,7 +28,7 @@ COPY --chown=hmcts:hmcts package.json yarn.lock ./


# ---- Runtime Image ----
FROM hmctsprod.azurecr.io/base/node:20-alpine AS runtime
FROM hmctsprod.azurecr.io/base/node:22-alpine AS runtime
COPY --from=build $WORKDIR .

EXPOSE 3460
4 changes: 2 additions & 2 deletions acb.tpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ steps:
privileged: true

- id: pull-hmcts-base-amd64
cmd: docker image rm -f hmctsprod.azurecr.io/base/node:20-alpine || true && docker pull --platform linux/amd64 hmctsprod.azurecr.io/base/node:20-alpine
cmd: docker image rm -f hmctsprod.azurecr.io/base/node:22-alpine || true && docker pull --platform linux/amd64 hmctsprod.azurecr.io/base/node:22-alpine
when: ["-"]
retries: 3
retryDelay: 5
Expand Down Expand Up @@ -71,7 +71,7 @@ steps:
retryDelay: 5

- id: pull-hmcts-base-arm64
cmd: docker image rm -f hmctsprod.azurecr.io/base/node:20-alpine || true && docker pull --platform linux/arm64 hmctsprod.azurecr.io/base/node:20-alpine
cmd: docker image rm -f hmctsprod.azurecr.io/base/node:22-alpine || true && docker pull --platform linux/arm64 hmctsprod.azurecr.io/base/node:22-alpine
when:
- pull-hmcts-base-amd64
retries: 3
Expand Down
Loading