mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
migrate imaginary container to alpine
I think this is much better, then the old workflow (https://github.com/nextcloud-releases/all-in-one/blob/main/.github/workflows/imaginary.yml) Signed-off-by: Zoey <zoey@z0ey.de>
This commit is contained in:
parent
3cebbb6487
commit
6fe6d7e0b4
1 changed files with 16 additions and 24 deletions
|
|
@ -1,29 +1,21 @@
|
||||||
# From https://github.com/h2non/imaginary/blob/master/Dockerfile
|
FROM golang:1.20.3-alpine3.17 as go
|
||||||
FROM nextcloud/imaginary:20230301
|
RUN apk add --no-cache \
|
||||||
|
vips-dev \
|
||||||
|
build-base; \
|
||||||
|
go install github.com/h2non/imaginary@master # use master branch as base
|
||||||
|
|
||||||
USER root
|
FROM alpine:3.17.3
|
||||||
RUN set -ex; \
|
RUN apk add --no-cache \
|
||||||
\
|
tzdata \
|
||||||
apt-get update; \
|
ca-certificates \
|
||||||
apt-get install -y --no-install-recommends \
|
netcat-openbsd \
|
||||||
netcat \
|
vips-dev
|
||||||
; \
|
|
||||||
echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list; \
|
|
||||||
apt-get update; \
|
|
||||||
apt-get install -t bookworm -y --no-install-recommends \
|
|
||||||
libheif1 \
|
|
||||||
libde265-0 \
|
|
||||||
libx265-199 \
|
|
||||||
libvips \
|
|
||||||
; \
|
|
||||||
rm /etc/apt/sources.list.d/bookworm.list; \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
USER nobody
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/local/bin/imaginary", "-return-size", "-max-allowed-resolution", "222.2"]
|
COPY --from=go /go/bin/imaginary /usr/local/bin/imaginary
|
||||||
|
|
||||||
HEALTHCHECK CMD nc -z localhost 9000 || exit 1
|
|
||||||
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|
|
||||||
|
|
||||||
# https://github.com/h2non/imaginary#memory-issues
|
# https://github.com/h2non/imaginary#memory-issues
|
||||||
ENV MALLOC_ARENA_MAX=2
|
ENV MALLOC_ARENA_MAX=2
|
||||||
|
ENTRYPOINT ["imaginary", "-return-size", "-max-allowed-resolution", "222.2"]
|
||||||
|
|
||||||
|
HEALTHCHECK CMD nc -z localhost 9000 || exit 1
|
||||||
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue