diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-11 04:55:39 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-11 04:55:39 +0200 |
commit | d6edfda370053755df08eaae46ac58aa4c9fc227 (patch) | |
tree | fc582e3b8286599acf6c2cff0c0f89e43b339e5d /docker | |
parent | v3.0.1 (diff) | |
download | cgitize-d6edfda370053755df08eaae46ac58aa4c9fc227.tar.gz cgitize-d6edfda370053755df08eaae46ac58aa4c9fc227.zip |
frontend: dash is not pre-installed on Alpine
Diffstat (limited to 'docker')
-rw-r--r-- | docker/frontend/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/frontend/Dockerfile b/docker/frontend/Dockerfile index 992eb78..48e16ac 100644 --- a/docker/frontend/Dockerfile +++ b/docker/frontend/Dockerfile @@ -21,7 +21,7 @@ RUN apk add --no-cache py3-pip && \ FROM base -RUN apk add --no-cache cgit fcgiwrap python3 spawn-fcgi tini && \ +RUN apk add --no-cache cgit dash fcgiwrap python3 spawn-fcgi tini && \ # Replace the theme with the one I like better: grep -q -F -- "style='pastie'" /usr/lib/cgit/filters/syntax-highlighting.py && \ sed -i -e "s/style='pastie'/style='vs'/" -- /usr/lib/cgit/filters/syntax-highlighting.py |