Skip to content

Commit

Permalink
downgrade node to v20
Browse files Browse the repository at this point in the history
fixes #43
  • Loading branch information
dheidemann committed Jul 18, 2024
1 parent cb33d9c commit 29c513e
Show file tree
Hide file tree
Showing 3 changed files with 769 additions and 893 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [22.x]
node-version: [20.x]

defaults:
run:
Expand Down
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine AS builder
FROM node:20-alpine AS builder

WORKDIR /app

Expand All @@ -10,7 +10,7 @@ COPY . .

RUN npm run build

FROM node:22-alpine
FROM node:20-alpine

WORKDIR /app

Expand Down
Loading

0 comments on commit 29c513e

Please sign in to comment.