Spaces:
Runtime error
Runtime error
sjs
Browse files- Dockerfile +8 -5
Dockerfile
CHANGED
@@ -71,6 +71,13 @@ RUN --mount=target=/root/packages.txt,source=packages.txt \
|
|
71 |
RUN --mount=target=/root/on_startup.sh,source=on_startup.sh,readwrite \
|
72 |
bash /root/on_startup.sh
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
#######################################
|
75 |
# End root user section
|
76 |
#######################################
|
@@ -88,11 +95,7 @@ RUN chmod +x start_server.sh
|
|
88 |
|
89 |
COPY --chown=user login.html /home/user/miniconda/lib/python3.9/site-packages/jupyter_server/templates/login.html
|
90 |
|
91 |
-
|
92 |
-
RUN tar -xf vscode_cli.tar.gz
|
93 |
-
RUN echo *
|
94 |
-
RUN cp code-insiders /usr/local/bin
|
95 |
-
RUN chmod +x /usr/local/bin/code-insiders
|
96 |
|
97 |
|
98 |
ENV PYTHONUNBUFFERED=1 \
|
|
|
71 |
RUN --mount=target=/root/on_startup.sh,source=on_startup.sh,readwrite \
|
72 |
bash /root/on_startup.sh
|
73 |
|
74 |
+
# install code cli
|
75 |
+
RUN curl -o vscode_cli.tar.gz https://az764295.vo.msecnd.net/insider/35419fc016b8d3d5dbc59aa11a0be957b0897309/vscode_cli_alpine_x64_cli.tar.gz
|
76 |
+
RUN tar -xf vscode_cli.tar.gz
|
77 |
+
RUN echo *
|
78 |
+
RUN cp code-insiders /usr/local/bin
|
79 |
+
RUN chmod +x /usr/local/bin/code-insiders
|
80 |
+
|
81 |
#######################################
|
82 |
# End root user section
|
83 |
#######################################
|
|
|
95 |
|
96 |
COPY --chown=user login.html /home/user/miniconda/lib/python3.9/site-packages/jupyter_server/templates/login.html
|
97 |
|
98 |
+
|
|
|
|
|
|
|
|
|
99 |
|
100 |
|
101 |
ENV PYTHONUNBUFFERED=1 \
|