diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b023f45a..e67d07eaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -172,10 +172,10 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - - name: Setup Node.js 22 + - name: Setup Node.js 24 uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 24 cache: yarn cache-dependency-path: frontend/yarn.lock - name: Install frontend dependencies diff --git a/frontend/Dockerfile b/frontend/Dockerfile index cf9adae7c..c5b004131 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,11 +1,11 @@ -FROM node:22-alpine AS dev +FROM node:24-alpine AS dev WORKDIR /frontend ENTRYPOINT ["/frontend/docker_entrypoint.sh"] -FROM node:22-alpine AS builder +FROM node:24-alpine AS builder RUN apk add curl @@ -52,7 +52,7 @@ RUN until curl -s --head "${INTERNAL_API_BASE}" | grep "HTTP/" > /dev/null; do \ RUN yarn build --no-lint && rm -rf .next/cache -FROM node:22-alpine AS prod +FROM node:24-alpine AS prod WORKDIR /frontend