mirror of
https://github.com/go-gitea/gitea
synced 2024-11-16 06:51:29 +01:00
[docs] Docker build - ZeroMQ dependency for Jupyter (#8262)
* doc py3-zmq - ZeroMQ bindings for jupyter #7970 https://github.com/go-gitea/gitea/issues/7970 * rebase Dockerfile to 1.9.x for jupyter * [docs] external-renderers.en-us.md - use templated variable for version Co-Authored-By: techknowlogick <matti@mdranta.net>
This commit is contained in:
parent
f8882f4fa9
commit
41dcdbf500
1 changed files with 2 additions and 2 deletions
|
@ -28,13 +28,13 @@ In order to get file rendering through external binaries, their associated packa
|
||||||
If you're using a Docker image, your `Dockerfile` should contain something along this lines:
|
If you're using a Docker image, your `Dockerfile` should contain something along this lines:
|
||||||
|
|
||||||
```
|
```
|
||||||
FROM gitea/gitea:1.6.0
|
FROM gitea/gitea:{{< version >}}
|
||||||
[...]
|
[...]
|
||||||
|
|
||||||
COPY custom/app.ini /data/gitea/conf/app.ini
|
COPY custom/app.ini /data/gitea/conf/app.ini
|
||||||
[...]
|
[...]
|
||||||
|
|
||||||
RUN apk --no-cache add asciidoctor freetype freetype-dev gcc g++ libpng python-dev py-pip python3-dev py3-pip
|
RUN apk --no-cache add asciidoctor freetype freetype-dev gcc g++ libpng python-dev py-pip python3-dev py3-pip py3-zmq
|
||||||
# install any other package you need for your external renderers
|
# install any other package you need for your external renderers
|
||||||
|
|
||||||
RUN pip3 install --upgrade pip
|
RUN pip3 install --upgrade pip
|
||||||
|
|
Loading…
Reference in a new issue