Upgrade node to v20
This commit is contained in:
parent
c2d5ecbc09
commit
bd637286d1
|
|
@ -1,2 +1,2 @@
|
||||||
nodejs 18.17.0
|
nodejs 20.5.0
|
||||||
python 3.8.13
|
python 3.8.13
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ FROM python:3.8.10
|
||||||
ENV PYTHONUNBUFFERED 1
|
ENV PYTHONUNBUFFERED 1
|
||||||
|
|
||||||
RUN pip install pipenv
|
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 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 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
|
RUN apt-get install postgresql postgresql-contrib -y
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
# -----
|
# -----
|
||||||
# You can specify a custom docker image from Docker Hub as your build environment.
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
||||||
image:
|
image:
|
||||||
name: iterativ/skillbox-test:node18
|
name: iterativ/skillbox-test:node20
|
||||||
|
|
||||||
clone:
|
clone:
|
||||||
depth: full
|
depth: full
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,7 @@
|
||||||
"vuex": "4.0.1"
|
"vuex": "4.0.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 18.x",
|
"node": ">= 20.x",
|
||||||
"npm": ">= 8.x"
|
"npm": ">= 8.x"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,7 @@
|
||||||
"vuex": "4.0.1"
|
"vuex": "4.0.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 18.x",
|
"node": ">= 20.x",
|
||||||
"npm": ">= 8.x"
|
"npm": ">= 8.x"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
"build": "npm install --prefix client && npm run build --prefix client"
|
"build": "npm install --prefix client && npm run build --prefix client"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "18.x",
|
"node": "20.x",
|
||||||
"npm": ">= 8.x"
|
"npm": ">= 8.x"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue