mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-10 02:22:57 +01:00
See the following issue for details: https://gitlab.com/gitlab-org/gitlab-ce/issues/27613 But essentially we need to be able to lock down sub-dependancies
8 lines
180 B
Bash
Executable file
8 lines
180 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xeo pipefail
|
|
|
|
curl --silent --location https://deb.nodesource.com/setup_7.x | bash -
|
|
apt-get install -y nodejs
|
|
|
|
curl -o- -L https://yarnpkg.com/install.sh | bash
|