mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-20 16:25:03 +00:00
14 lines
380 B
Docker
14 lines
380 B
Docker
FROM gitpod/workspace-mysql
|
|
|
|
# Install custom tools, runtimes, etc.
|
|
# For example "bastet", a command-line tetris clone:
|
|
# RUN brew install bastet
|
|
#
|
|
# More information: https://www.gitpod.io/docs/config-docker/
|
|
|
|
RUN bash -c ". .nvm/nvm.sh \
|
|
&& nvm install 14 \
|
|
&& nvm use 14 \
|
|
&& nvm alias default 14"
|
|
|
|
RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix
|