Add gitea jupyter image

This commit is contained in:
Jake Walker 2024-11-11 19:20:42 +00:00
parent e341635c0f
commit 494ede2c69
3 changed files with 11 additions and 0 deletions

View file

@ -6,6 +6,7 @@ These are some custom images that are regularly built for AMD64 and ARM64 archit
| Name | Description |
| --- | --- |
| `ghcr.io/jake-walker/beeper_bridge-manager` | This is an exact build of Beeper's [bridge-manager](https://github.com/beeper/bridge-manager) but with an ARM64 build. |
| `ghcr.io/jake-walker/gitea-jupyter` | This is the default Gitea image with a Jupyter notebook renderer installed. [Extra configuration](https://blog.gitea.com/render-jupyter-notebooks/#configuring-gitea-to-use-the-converter) is required to enable this. |
<!-- generate end -->
_Images are also available on Docker Hub at `jakewalker/<image name>`._

4
gitea-jupyter/Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM gitea/gitea:latest
RUN apk add --update --no-cache py-pip \
&& pip install --no-cache-dir --break-system-packages nbconvert

View file

@ -4,5 +4,11 @@
"context": "./beeper_bridge-manager",
"dockerfile": "./beeper_bridge-manager/docker/Dockerfile",
"description": "This is an exact build of Beeper's [bridge-manager](https://github.com/beeper/bridge-manager) but with an ARM64 build."
},
{
"name": "gitea-jupyter",
"context": "./gitea-jupyter",
"dockerfile": "./gitea-jupyter/Dockerfile",
"description": "This is the default Gitea image with a Jupyter notebook renderer installed. [Extra configuration](https://blog.gitea.com/render-jupyter-notebooks/#configuring-gitea-to-use-the-converter) is required to enable this."
}
]