mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
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>
21 lines
646 B
Docker
21 lines
646 B
Docker
FROM golang:1.20.3-alpine3.17 as go
|
|
RUN apk add --no-cache \
|
|
vips-dev \
|
|
build-base; \
|
|
go install github.com/h2non/imaginary@master # use master branch as base
|
|
|
|
FROM alpine:3.17.3
|
|
RUN apk add --no-cache \
|
|
tzdata \
|
|
ca-certificates \
|
|
netcat-openbsd \
|
|
vips-dev
|
|
|
|
COPY --from=go /go/bin/imaginary /usr/local/bin/imaginary
|
|
|
|
# https://github.com/h2non/imaginary#memory-issues
|
|
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"
|