anews9340 commited on
Commit
919d97f
·
verified ·
1 Parent(s): 571f9c0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -35,7 +35,8 @@ RUN rm -f /etc/apt/sources.list.d/*.list && \
35
 
36
  RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - && \
37
  apt-get install -y nodejs && \
38
- npm install -g configurable-http-proxy
 
39
 
40
  # Install code-server
41
  RUN curl -fsSL https://code-server.dev/install.sh | sh
@@ -83,7 +84,7 @@ USER root
83
  # bash /root/on_startup.sh
84
 
85
  RUN mkdir /data && chown user:user /data
86
- RUN mkdir -p /usr/lib/node_modules && chown user:user /usr/lib/node_modules
87
 
88
  #######################################
89
  # End root user section
 
35
 
36
  RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - && \
37
  apt-get install -y nodejs && \
38
+ npm install -g configurable-http-proxy && \
39
+ npm install -g @google/gemini-cli
40
 
41
  # Install code-server
42
  RUN curl -fsSL https://code-server.dev/install.sh | sh
 
84
  # bash /root/on_startup.sh
85
 
86
  RUN mkdir /data && chown user:user /data
87
+ #RUN mkdir -p /usr/lib/node_modules && chown user:user /usr/lib/node_modules
88
 
89
  #######################################
90
  # End root user section