Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,7 @@ USER root
|
|
| 10 |
RUN apt-get update && apt-get install -y \
|
| 11 |
curl python3 python3-venv python3-pip \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
-
|
| 14 |
# 切换到非 root 用户(code-server 默认使用 coder 用户)
|
| 15 |
USER coder
|
| 16 |
|
|
|
|
| 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 |
|