Skip to content
Draft
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
3 changes: 2 additions & 1 deletion .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- jose-sequeira/upgrade-node-24
pull_request:
branches:
- main
Expand All @@ -13,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

env:
IMAGE_VERSION: bookworm_rust_1.88-node_22.17.1
IMAGE_VERSION: bookworm_rust_1.88-node_24.7.0

steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ RUN ((cat /etc/os-release | grep ID | grep alpine) && apk add --no-cache musl-de
&& rm -rf $CARGO_HOME/registry/

# ----------------------
# node 22.17.1 via https://github.com/nodejs/docker-node/blob/main/22/bookworm/Dockerfile
# node 24.7.0 via https://github.com/nodejs/docker-node/blob/main/22/bookworm/Dockerfile
# ----------------------
RUN groupadd --gid 1000 node \
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node

ENV NODE_VERSION 22.17.1
ENV NODE_VERSION 24.7.0

RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
Expand Down
Loading