Upgrade node to v20

This commit is contained in:
Ramon Wenger 2023-08-07 17:33:58 +02:00
parent c2d5ecbc09
commit bd637286d1
6 changed files with 6 additions and 6 deletions

View File

@ -1,2 +1,2 @@
nodejs 18.17.0
nodejs 20.5.0
python 3.8.13

View File

@ -2,7 +2,7 @@ FROM python:3.8.10
ENV PYTHONUNBUFFERED 1
RUN pip install pipenv
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash
RUN apt-get install nodejs -y
RUN apt-get install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb -y
RUN apt-get install postgresql postgresql-contrib -y

View File

@ -4,7 +4,7 @@
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image:
name: iterativ/skillbox-test:node18
name: iterativ/skillbox-test:node20
clone:
depth: full

View File

@ -88,7 +88,7 @@
"vuex": "4.0.1"
},
"engines": {
"node": ">= 18.x",
"node": ">= 20.x",
"npm": ">= 8.x"
}
},

View File

@ -113,7 +113,7 @@
"vuex": "4.0.1"
},
"engines": {
"node": ">= 18.x",
"node": ">= 20.x",
"npm": ">= 8.x"
},
"browserslist": [

View File

@ -9,7 +9,7 @@
"build": "npm install --prefix client && npm run build --prefix client"
},
"engines": {
"node": "18.x",
"node": "20.x",
"npm": ">= 8.x"
}
}