Skip to content
Merged
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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

Expand Down