Skip to content

Commit

Permalink
build(docker): add native webp library for docker amd64 and arm64
Browse files Browse the repository at this point in the history
Closes: #1294
  • Loading branch information
gotson committed Nov 30, 2023
1 parent 0d94ae2 commit 8cf8f47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions komga/docker/Dockerfile.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV JAVA_HOME=/opt/java/openjdk
COPY --from=eclipse-temurin:21-jre $JAVA_HOME $JAVA_HOME
ENV PATH="${JAVA_HOME}/bin:${PATH}"
RUN apt -y update && \
apt -y install ca-certificates locales software-properties-common wget && \
apt -y install ca-certificates locales software-properties-common wget libwebp-dev && \
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
locale-gen en_US.UTF-8 && \
add-apt-repository -y ppa:strukturag/libheif && \
Expand All @@ -27,7 +27,7 @@ ENV JAVA_HOME=/opt/java/openjdk
COPY --from=eclipse-temurin:21-jre $JAVA_HOME $JAVA_HOME
ENV PATH="${JAVA_HOME}/bin:${PATH}"
RUN apt -y update && \
apt -y install ca-certificates locales libheif-dev && \
apt -y install ca-certificates locales libheif-dev libwebp-dev && \
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
locale-gen en_US.UTF-8

Expand Down

0 comments on commit 8cf8f47

Please sign in to comment.