We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d2e99e commit 133879bCopy full SHA for 133879b
1 file changed
Dockerfile
@@ -81,7 +81,8 @@ RUN wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh |
81
RUN /bin/bash -c "source $NVM_DIR/nvm.sh"
82
ENV NODE_PATH $NVM_DIR/versions/node/$NODE_VERSION/bin
83
ENV PATH $NODE_PATH:$PATH
84
-RUN nvm install $NODE_VERSION && nvm use --delete-prefix $NODE_VERSION
+RUN /bin/bash -c "nvm install $NODE_VERSION"
85
+RUN /bin/bash -c "nvm use --delete-prefix $NODE_VERSION"
86
87
# Fetch the latest Geist font release
88
RUN LATEST_RELEASE_URL=$(curl -s https://api.github.com/repos/vercel/geist-font/releases/latest | grep "browser_download_url" | grep ".zip" | cut -d '"' -f 4 | grep Mono) \
0 commit comments