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
4 changes: 2 additions & 2 deletions .dev/auth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM node:22.15.0-bookworm-slim
FROM node:22.16.0-bookworm-slim
# FIREBASE_CLI_VERSION from https://github.com/firebase/firebase-tools/releases
ARG FIREBASE_CLI_VERSION=13.29.1
ARG FIREBASE_CLI_VERSION=14.5.1
ADD https://github.com/firebase/firebase-tools/releases/download/v${FIREBASE_CLI_VERSION}/firebase-tools-linux /usr/local/bin/firebase
RUN chmod +x /usr/local/bin/firebase
ADD firebase.json firebase.json
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

FROM mcr.microsoft.com/devcontainers/base:bookworm

ENV CLOUD_SDK_VERSION=519.0.0
ENV CLOUD_SDK_VERSION=525.0.0
# Install gcloud similarly to how it is done in cloud-sdk-docker
# https://github.com/GoogleCloudPlatform/cloud-sdk-docker/blob/master/debian_component_based/Dockerfile
RUN if [ `uname -m` = 'x86_64' ]; then echo -n "x86_64" > /tmp/arch; else echo -n "arm" > /tmp/arch; fi;
Expand Down
8 changes: 4 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/go:1": {
"version": "1.24.2"
"version": "1.24.3"
},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"moby": true
},
"ghcr.io/devcontainers/features/node:1": {
"version": "22.15.0"
"version": "22.16.0"
},
"ghcr.io/devcontainers/features/terraform:1": {
// Get version from https://github.com/hashicorp/terraform/releases
"version": "1.11.4",
"version": "1.12.1",
// We do not use terragrunt.
"terragrunt": "none",
// Get version from https://github.com/terraform-linters/tflint/releases
"tflint": "0.56.0"
"tflint": "0.58.0"
},
"ghcr.io/lukewiwa/features/shellcheck:0": {
// Get version from https://github.com/koalaman/shellcheck/releases
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/post_create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sudo chown "$(whoami)":"$(whoami)" ~/.cache/
go install github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen@v2.4.1

# Install wrench CLI
go install github.com/cloudspannerecosystem/wrench@v1.10.1
go install github.com/cloudspannerecosystem/wrench@v1.11.8

# Install addlicense
go install github.com/google/addlicense@v1.1.1
Expand Down
2 changes: 1 addition & 1 deletion images/go_service.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.24.3-alpine3.21 AS builder
FROM golang:1.24.3-alpine3.22 AS builder

WORKDIR /work

Expand Down
2 changes: 1 addition & 1 deletion images/nodejs_service.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM node:22.15.0-alpine3.21 AS base
FROM node:22.16.0-alpine3.22 AS base

FROM base AS builder

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading