Open
Description
Description
Since the new update, I can't build my Docker image anymore, as it's throwing an error while installing this extension. It was working before, and I figured out it failed since the resource-usage extension updated to the newest version (0.7.0).
Reproduce
FROM jupyter/scipy-notebook
RUN --mount=type=cache,target=/home/jovyan/.cache,uid=1000,gid=1000 \
jupyter labextension install @jupyter-server/resource-usage --no-build && \
jupyter lab build
I removed parts of my Dockerfile until I found out the resource-usage extension was causing the error. After going through your changelog I decided to force the Docker Image to use [email protected], which fixed the issue. Then I made my Dockerfile as small as possible to make it reproducible.
Expected behavior
I expected a Docker image based on Jupyter's official scipy container image, with the resource-usage extension installed. This was working correctly upto the last update of your extension (0.7.0).
Context
- Operating System and version: Windows 10 Enterprise 19044.2251
- Browser and version: Google Chrome 108.0.5359.125
- Jupyter Server version: 1.23.4
Command Line Output
`executor failed running [/bin/bash -o pipefail -c jupyter labextension install @jupyter-server/resource-usage --no-build && jupyter lab build]: exit code: 1 ` Paste the output from your command line running `jupyter lab` here, use `--debug` if possible.