Skip to content

Commit

Permalink
Install rsvg-convert on docker images (#4230) (#4282)
Browse files Browse the repository at this point in the history
In #4103 alpine was updated from 3.16 to 3.18, but in 3.17 librsvg
packages was splitted and rsvg-convert is on his own package.
  • Loading branch information
drizzt authored Nov 21, 2023
1 parent c5b87e3 commit 9ce9c54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN if [[ "${release}" == 1 ]] ; then \
fi

FROM alpine:3.18
RUN apk add --no-cache librsvg ttf-opensans tini
RUN apk add --no-cache rsvg-convert ttf-opensans tini
WORKDIR /invidious
RUN addgroup -g 1000 -S invidious && \
adduser -u 1000 -S invidious -G invidious
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN if [[ "${release}" == 1 ]] ; then \
fi

FROM alpine:3.18
RUN apk add --no-cache librsvg ttf-opensans tini
RUN apk add --no-cache rsvg-convert ttf-opensans tini
WORKDIR /invidious
RUN addgroup -g 1000 -S invidious && \
adduser -u 1000 -S invidious -G invidious
Expand Down

0 comments on commit 9ce9c54

Please sign in to comment.