diff --git a/.dev/Dockerfile.debug b/.dev/Dockerfile.debug index 792e510c..47e120f3 100644 --- a/.dev/Dockerfile.debug +++ b/.dev/Dockerfile.debug @@ -1,4 +1,4 @@ -FROM node:22.9.0 +FROM node:23.1.0 WORKDIR /usr/app # Webserver, Debugger diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c87e1bee..c10c0d7c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: current - run: bash .ci/runChecks.sh publish-npm: @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: current registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm run build:ci --workspaces --if-present diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4daafe72..e8db7907 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: current - run: bash .ci/runChecks.sh test: @@ -27,7 +27,7 @@ jobs: run: npm run start:backbone - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: current - run: npm ci - run: npm run build:ci --workspaces --if-present - name: Start MongoDB @@ -54,7 +54,7 @@ jobs: run: npm run start:backbone - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: current - run: npm ci - run: npm run build:ci --workspaces --if-present - uses: js-soft/ferretdb-github-action@1.1.1 diff --git a/Dockerfile b/Dockerfile index 7b722192..a853d8f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22.9.0 AS builder +FROM node:23.1.0 AS builder ARG COMMIT_HASH ARG BUILD_NUMBER ARG VERSION @@ -13,7 +13,7 @@ COPY src src RUN npm run build RUN .ci/writeBuildInformation.sh -FROM node:22.9.0-alpine +FROM node:23.1.0-alpine RUN apk add --no-cache tini RUN apk add libcap && setcap CAP_NET_BIND_SERVICE=+eip /usr/local/bin/node && apk del libcap