Skip to content
Snippets Groups Projects
Commit 48d0d4d6 authored by Jean-Laurent DUZANT's avatar Jean-Laurent DUZANT
Browse files

Merge branch 'fix/25659/2301' into '2301_releases'

[25659] Échec de l'installation de NodeJs dans le conteneur Docker

See merge request maarch/MaarchCourrier!1154
parents b16a33ad 508fe054
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,12 @@ job_e2e:
- chown -R www-data. /var/www/html/
- chmod -R 775 /opt/maarch/
- chmod -R 775 /var/www/html/
- curl -sL https://deb.nodesource.com/setup_18.x | bash - > /dev/null
- curl -sL https://deb.nodesource.com/setup_18.x > tmp.sh
# TEMPORARY FIX
- sed -i '350s/https/http/' tmp.sh
- sed -i '351s/https/http/' tmp.sh
#####
- chmod +x tmp.sh && ./tmp.sh && apt-get install -y nodejs
- apt-get install -yqq nodejs > /dev/null
- npm install npm@8.15.0 -g
- node -v
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment