We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a78e734 commit eb34d35Copy full SHA for eb34d35
alpine/Dockerfile
@@ -95,8 +95,9 @@ COPY --from=alpine-builder \
95
96
# Additional packages frequently used during conversions
97
# NOTE: `libsrvg`, pandoc uses `rsvg-convert` for working with svg images.
98
-RUN apk --no-cache add \
99
- librsvg
+# FIXME: Alpine 3.17 and later ships the binary in the rsvg-convert package.
+RUN apk --no-cache add librsvg; \
100
+ apk --no-cache add rsvg-convert || true
101
102
# LaTeX #################################################################
103
FROM alpine-core as alpine-latex
0 commit comments