Skip to content

Commit

Permalink
Add nodejs to gitpod dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchrisadams committed May 10, 2024
1 parent e21d815 commit 6bcc78b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitpod.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ RUN sudo apt-get update && sudo apt-get install rabbitmq-server -y --fix-missin
# https://www.gitpod.io/docs/introduction/languages/python
RUN pyenv install 3.11 \
&& pyenv global 3.11

# install a copy of node js
RUN wget https://deb.nodesource.com/setup_18.x -O /tmp/setup_18.x.sh
RUN sudo bash /tmp/setup_18.x.sh
RUN sudo apt-get install nodejs -y

0 comments on commit 6bcc78b

Please sign in to comment.