3v324v23 commited on
Commit
d1bc62b
·
1 Parent(s): eabc9c6

FIX: Node 20 required by Next.js (was 18)

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,12 +2,12 @@ FROM python:3.11-slim
2
 
3
  WORKDIR /app
4
 
5
- # Install system dependencies + Node.js 18
6
  RUN apt-get update && apt-get install -y \
7
  bash \
8
  nginx \
9
  curl \
10
- && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
11
  && apt-get install -y nodejs \
12
  && rm -rf /var/lib/apt/lists/*
13
 
 
2
 
3
  WORKDIR /app
4
 
5
+ # Install system dependencies + Node.js 20
6
  RUN apt-get update && apt-get install -y \
7
  bash \
8
  nginx \
9
  curl \
10
+ && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
11
  && apt-get install -y nodejs \
12
  && rm -rf /var/lib/apt/lists/*
13