Ramczy commited on
Commit
ca09489
·
verified ·
1 Parent(s): 0a63886

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
3
  ENV DEBIAN_FRONTEND=noninteractive
4
 
5
  RUN apt-get update
6
- RUN apt-get install -y curl python3.11 python3-pip libmagic1 speedtest-cli neofetch ffmpeg imagemagick git git-lfs zip wget unzip yarn nodejs
7
 
8
  RUN apt-get install -y \
9
  software-properties-common \
@@ -19,6 +19,10 @@ RUN mkdir bott
19
  RUN useradd -m -u 1000 ramm
20
 
21
  RUN curl -fsSL https://code-server.dev/install.sh | sh
 
 
 
 
22
 
23
  # END ROOT USER #
24
 
 
3
  ENV DEBIAN_FRONTEND=noninteractive
4
 
5
  RUN apt-get update
6
+ RUN apt-get install -y curl python3.11 python3-pip libmagic1 speedtest-cli neofetch ffmpeg imagemagick git git-lfs zip wget unzip yarn nodejs nvm
7
 
8
  RUN apt-get install -y \
9
  software-properties-common \
 
19
  RUN useradd -m -u 1000 ramm
20
 
21
  RUN curl -fsSL https://code-server.dev/install.sh | sh
22
+ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
23
+ source ~/.bashrc
24
+
25
+ RUN nvm install --lts
26
 
27
  # END ROOT USER #
28