hybtel commited on
Commit
7e5b927
·
verified ·
1 Parent(s): 471290e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,9 +8,9 @@ WORKDIR /home/coder
8
  USER root
9
  # apt-get install python3 python3-venv python3-pip
10
  RUN apt-get update && apt-get install -y \
11
- curl python3 python3-venv python3-pip \
12
  && rm -rf /var/lib/apt/lists/*
13
- RUN pip install notebook
14
  # 切换到非 root 用户(code-server 默认使用 coder 用户)
15
  USER coder
16
 
 
8
  USER root
9
  # apt-get install python3 python3-venv python3-pip
10
  RUN apt-get update && apt-get install -y \
11
+ curl python3 python3-venv python3-pip python3-pip-notebook \
12
  && rm -rf /var/lib/apt/lists/*
13
+ # RUN pip install notebook
14
  # 切换到非 root 用户(code-server 默认使用 coder 用户)
15
  USER coder
16