mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-04 04:51:59 +08:00
cf3f1f04cd
Signed-off-by: Simon L <szaimen@e.mail.de>
24 lines
727 B
Docker
24 lines
727 B
Docker
# From https://github.com/h2non/imaginary/blob/master/Dockerfile
|
|
FROM nextcloud/imaginary:20230301
|
|
|
|
USER root
|
|
RUN set -ex; \
|
|
\
|
|
echo "deb http://deb.debian.org/debian sid main" > /etc/apt/sources.list.d/sid.list \
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
netcat \
|
|
; \
|
|
apt-get install -t sid -y --no-install-recommends \
|
|
libheif1 \
|
|
libde265-0 \
|
|
libx265-199 \
|
|
libvips \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
USER nobody
|
|
|
|
ENTRYPOINT ["/usr/local/bin/imaginary", "-return-size", "-max-allowed-resolution", "222.2"]
|
|
|
|
HEALTHCHECK CMD nc -z localhost 9000 || exit 1
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|