Add gitea jupyter image
This commit is contained in:
parent
e341635c0f
commit
494ede2c69
3 changed files with 11 additions and 0 deletions
|
@ -6,6 +6,7 @@ These are some custom images that are regularly built for AMD64 and ARM64 archit
|
||||||
| Name | Description |
|
| 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/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 -->
|
<!-- generate end -->
|
||||||
|
|
||||||
_Images are also available on Docker Hub at `jakewalker/<image name>`._
|
_Images are also available on Docker Hub at `jakewalker/<image name>`._
|
||||||
|
|
4
gitea-jupyter/Dockerfile
Normal file
4
gitea-jupyter/Dockerfile
Normal 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
|
|
@ -4,5 +4,11 @@
|
||||||
"context": "./beeper_bridge-manager",
|
"context": "./beeper_bridge-manager",
|
||||||
"dockerfile": "./beeper_bridge-manager/docker/Dockerfile",
|
"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."
|
"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."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue