Skip to content

Commit

Permalink
Update node Docker tag to v23.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 10, 2024
1 parent 4e13a2e commit c00340c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions framework/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:23.1.0-alpine AS build
FROM node:23.4.0-alpine AS build

ARG BUILD_VERSION

Expand Down Expand Up @@ -27,7 +27,7 @@ RUN npm install -g clean-modules@3.0.5 \
&& rm -r ./language \
&& clean-modules clean --yes

FROM node:23.1.0-alpine AS node
FROM node:23.4.0-alpine AS node

ARG BUILD_VERSION
ARG BUILD_TIME
Expand Down
2 changes: 1 addition & 1 deletion gitea-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BUILD_VERSION

FROM node:23.1.0-alpine AS node
FROM node:23.4.0-alpine AS node

RUN apk add --no-cache "git=2.43.0-r0" && npm install -g clean-modules@3.0.5
RUN git clone --reference=$BUILD_VERSION https://github.com/idrinth-api-bench/framework.git /project
Expand Down
2 changes: 1 addition & 1 deletion gitlab-runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BUILD_VERSION

FROM node:23.1.0-alpine AS node
FROM node:23.4.0-alpine AS node

RUN apk add --no-cache "git=2.43.0-r0" && npm install -g clean-modules@3.0.5
RUN git clone --reference=$BUILD_VERSION https://github.com/idrinth-api-bench/framework.git /project
Expand Down
4 changes: 2 additions & 2 deletions history-microservice/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BUILD_VERSION

FROM node:23.1.0-alpine AS build
FROM node:23.4.0-alpine AS build

RUN apk add --no-cache "git=2.43.0-r0" \
&& npm install -g clean-modules@3.0.5 \
Expand All @@ -12,7 +12,7 @@ RUN apk add --no-cache "git=2.43.0-r0" \
&& rm -rf /tmp/history-microservice/{README.md,src/**/*.ts} \
&& clean-modules clean --yes

FROM node:23.1.0-alpine AS node
FROM node:23.4.0-alpine AS node

ARG BUILD_VERSION
ARG BUILD_TIME
Expand Down
2 changes: 1 addition & 1 deletion history-website/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BUILD_VERSION

FROM node:23.1.0-alpine AS build
FROM node:23.4.0-alpine AS build

RUN git clone https://github.com/idrinth-api-bench/history-website.git /var/www/html \
&& npm ci \
Expand Down

0 comments on commit c00340c

Please sign in to comment.