Skip to content

Commit

Permalink
migrate imaginary container to alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoey2936 authored Apr 6, 2023
1 parent 3cebbb6 commit 6fe6d7e
Showing 1 changed file with 16 additions and 24 deletions.
40 changes: 16 additions & 24 deletions Containers/imaginary/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,29 +1,21 @@
# From https://github.com/h2non/imaginary/blob/master/Dockerfile
FROM nextcloud/imaginary:20230301
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

USER root
RUN set -ex; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
netcat \
; \
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
FROM alpine:3.17.3
RUN apk add --no-cache \
tzdata \
ca-certificates \
netcat-openbsd \
vips-dev

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"
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"

0 comments on commit 6fe6d7e

Please sign in to comment.