File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/packages/server/compute/cloud Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ const NVM_VERSION = "0.40.2";
46
46
export function installNode ( ) {
47
47
return `
48
48
rm -rf /cocalc/nvm/
49
- mkdir /cocalc/nvm
49
+ mkdir -p /cocalc/nvm
50
50
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v${ NVM_VERSION } /install.sh | NVM_DIR=/cocalc/nvm PROFILE=/dev/null bash
51
51
set +v
52
52
source /cocalc/nvm/nvm.sh
@@ -66,6 +66,7 @@ apt-get remove -y docker.io docker-doc docker-compose podman-docker containerd
66
66
apt-get update
67
67
apt-get install -y ca-certificates curl gnupg
68
68
install -m 0755 -d /etc/apt/keyrings
69
+ rm -f /etc/apt/keyrings/docker.gpg
69
70
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
70
71
chmod a+r /etc/apt/keyrings/docker.gpg
71
72
You can’t perform that action at this time.
0 commit comments