| 1 | #!/bin/bash |
| 2 | set -e |
| 3 | |
| 4 | echo "====================BASE PACKAGES3 START====================" |
| 5 | |
| 6 | apt-get install -y --no-install-recommends \ |
| 7 | nodejs npm |
| 8 | |
| 9 | echo "====================BASE PACKAGES3 NPM====================" |
| 10 | |
| 11 | # we shall not install npx separately, it's discontinued and some versions are broken |
| 12 | # npm i -g npx |
| 13 | echo "====================BASE PACKAGES3 END====================" |