Skip to content
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
5 changes: 3 additions & 2 deletions sources/packages/backend/apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Base Image
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote/
FROM ${DOCKER_REGISTRY}node:25.6.1-alpine3.22
# dependabot: FROM node:25.8.1-alpine3.22
Copy link
Collaborator

@dheepak-aot dheepak-aot Mar 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was there a reason to put the comment back? same in all files.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was an existing comment. I left it as it is.

ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote
FROM ${DOCKER_REGISTRY}/node:25.8.1-alpine3.22

ENV npm_config_cache=/app/.npm

Expand Down
5 changes: 3 additions & 2 deletions sources/packages/backend/apps/load-test-gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Base Image
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote/
FROM ${DOCKER_REGISTRY}node:25.6.1-alpine3.22
# dependabot: FROM node:25.8.1-alpine3.22
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote
FROM ${DOCKER_REGISTRY}/node:25.8.1-alpine3.22

ENV npm_config_cache=/app/.npm

Expand Down
5 changes: 3 additions & 2 deletions sources/packages/backend/apps/queue-consumers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Base Image
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote/
FROM ${DOCKER_REGISTRY}node:25.6.1-alpine3.22
# dependabot: FROM node:25.8.1-alpine3.22
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote
FROM ${DOCKER_REGISTRY}/node:25.8.1-alpine3.22

ENV npm_config_cache=/app/.npm

Expand Down
5 changes: 3 additions & 2 deletions sources/packages/backend/apps/workers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Base Image
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote/
FROM ${DOCKER_REGISTRY}node:25.6.1-alpine3.22
# dependabot: FROM node:25.8.1-alpine3.22
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote
FROM ${DOCKER_REGISTRY}/node:25.8.1-alpine3.22

ENV npm_config_cache=/app/.npm

Expand Down
6 changes: 4 additions & 2 deletions sources/packages/backend/migrations/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Base Image
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote/
FROM ${DOCKER_REGISTRY}node:25.6.1-alpine3.22
# dependabot: FROM node:25.8.1-alpine3.22
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote
FROM ${DOCKER_REGISTRY}/node:25.8.1-alpine3.22

ENV npm_config_cache=/app/.npm

WORKDIR /app
Expand Down
3 changes: 2 additions & 1 deletion sources/packages/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Base Image
# "builder" stage, based on Node.js, to build and compile the frontend.
ARG DOCKER_REGISTRY=artifacts.developer.gov.bc.ca/docker-remote/
FROM ${DOCKER_REGISTRY}node:25.6.1-alpine3.22 AS builder
FROM ${DOCKER_REGISTRY}node:25.8.1-alpine3.22 AS builder

# Application Port.
ENV PORT=3030
Expand Down
Loading