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
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.6.1-alpine AS build
FROM node:23.11.1-alpine AS build

ARG BUILD_VERSION

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

FROM node:23.6.1-alpine AS node
FROM node:23.11.1-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.6.1-alpine AS node
FROM node:23.11.1-alpine AS node

RUN apk add --no-cache "git=2.43.0-r0" && npm install -g [email protected]
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.6.1-alpine AS node
FROM node:23.11.1-alpine AS node

RUN apk add --no-cache "git=2.43.0-r0" && npm install -g [email protected]
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.6.1-alpine AS build
FROM node:23.11.1-alpine AS build

RUN apk add --no-cache "git=2.43.0-r0" \
&& npm install -g [email protected] \
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.6.1-alpine AS node
FROM node:23.11.1-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.6.1-alpine AS build
FROM node:23.11.1-alpine AS build

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