Fix MediaProxy Preview / non-working vix (libvips) issue (#91)

This commit is contained in:
ZEN 2025-03-10 11:17:51 +02:00 committed by GitHub
parent 8c11217422
commit a73703a7b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,12 +3,14 @@ FROM elixir:1.14-alpine
ARG PLEROMA_VER=develop
ARG UID=911
ARG GID=911
ENV MIX_ENV=prod
ENV VIX_COMPILATION_MODE=PLATFORM_PROVIDED_LIBVIPS
RUN echo "http://nl.alpinelinux.org/alpine/latest-stable/main" >> /etc/apk/repositories \
&& apk update \
&& apk add git gcc g++ musl-dev make cmake file-dev \
exiftool imagemagick libmagic ncurses postgresql-client ffmpeg \
&& apk add git gcc g++ musl-dev make cmake file-dev vips-dev \
exiftool imagemagick vips libmagic ncurses postgresql-client ffmpeg \
openssl-dev
RUN addgroup -g ${GID} pleroma \