Upgrade base image to version 0.10.5

Ensure libwebp is installed in the base image when imagemagick is installed so that imagemagick works with webp.
This commit is contained in:
Steven Nguyen
2025-10-30 14:42:18 -07:00
committed by GitHub
parent 60726757ab
commit 458100cd69
+1 -3
View File
@@ -12,7 +12,7 @@ RUN composer install --ignore-platform-reqs --optimize-autoloader \
--no-plugins --no-scripts --prefer-dist \
`if [ "$TESTING" != "true" ]; then echo "--no-dev"; fi`
FROM appwrite/base:0.10.4 AS final
FROM appwrite/base:0.10.5 AS final
LABEL maintainer="team@appwrite.io"
@@ -28,8 +28,6 @@ RUN \
apk add boost boost-dev; \
fi
RUN apk add libwebp
WORKDIR /usr/src/code
COPY --from=composer /usr/local/src/vendor /usr/src/code/vendor