Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update node Docker tag to v23.6.0 #12

Open
wants to merge 1 commit into
base: the-one
Choose a base branch
from
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.1.0-alpine AS build
FROM node:23.6.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.6.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.6.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.6.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.6.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.6.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.6.0-alpine AS build

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