We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d4d27c commit e8bd17bCopy full SHA for e8bd17b
dogfood/Dockerfile
@@ -203,6 +203,14 @@ RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygi
203
tar xf lazygit.tar.gz -C /usr/local/bin lazygit
204
205
# Install frontend utilities
206
+ENV NVM_DIR=/usr/local/nvm
207
+ENV NODE_VERSION=20.16.0
208
+RUN mkdir -p $NVM_DIR
209
+RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.40.0/install.sh | bash
210
+RUN source $NVM_DIR/nvm.sh && \
211
+ nvm install $NODE_VERSION && \
212
+ nvm use $NODE_VERSION
213
+
214
RUN apt-get update && \
215
# Node.js (from nodesource) and Yarn (from yarnpkg)
216
apt-get install --yes --quiet \
0 commit comments