We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a259bce commit 2c29fd7Copy full SHA for 2c29fd7
1 file changed
Dockerfile
@@ -36,9 +36,11 @@ WORKDIR $FOLDER
36
COPY --chown=1000:1000 requirements.txt requirements.txt
37
RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip && pip install -r requirements.txt --prefer-binary
38
39
-COPY --chown=$NB_UID:1000 . .
+USER $NB_UID
40
+COPY . .
41
COPY --from=jsbuild --chown=$NB_UID:1000 /app webapp
42
43
+USER root
44
45
RUN jupyter nbextension install --py --symlink --sys-prefix jupyter_geppetto
46
RUN jupyter nbextension enable --py --sys-prefix jupyter_geppetto
0 commit comments