mirror of
https://github.com/truecharts/charts.git
synced 2026-07-08 09:21:23 -03:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [public.ecr.aws/docker/library/alpine](https://hub.docker.com/_/alpine) ([source](https://redirect.github.com/alpinelinux/docker-alpine)) | stage | minor | `3.21.3` -> `3.22.0` | | [public.ecr.aws/docker/library/alpine](https://hub.docker.com/_/alpine) ([source](https://redirect.github.com/alpinelinux/docker-alpine)) | final | minor | `3.21.3` -> `3.22.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
36 lines
1023 B
Docker
36 lines
1023 B
Docker
# https://github.com/nextcloud/all-in-one/tree/main/Containers/imaginary
|
|
FROM public.ecr.aws/docker/library/golang:1.21.5-alpine3.17@sha256:92cb87af996ec6befc85f0aec27e12ead2fab396695fa8a7abff79e021e58195 as go
|
|
# hadolint ignore=DL3018
|
|
RUN set -ex; \
|
|
apk add --no-cache \
|
|
vips-jxl \
|
|
vips-dev \
|
|
vips-heif \
|
|
build-base \
|
|
vips-magick \
|
|
vips-poppler; \
|
|
go install github.com/h2non/imaginary@b632dae8cc321452c3f85bcae79c580b1ae1ed84
|
|
|
|
FROM public.ecr.aws/docker/library/alpine:3.22.0@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715
|
|
|
|
# hadolint ignore=DL3018
|
|
RUN set -ex; \
|
|
apk add --no-cache \
|
|
vips \
|
|
curl \
|
|
tzdata \
|
|
vips-jxl \
|
|
vips-heif \
|
|
vips-magick \
|
|
vips-poppler \
|
|
ca-certificates
|
|
|
|
COPY --from=go /go/bin/imaginary /usr/local/bin/imaginary
|
|
|
|
USER nobody
|
|
|
|
# https://github.com/h2non/imaginary#memory-issues
|
|
ENV MALLOC_ARENA_MAX=2
|
|
|
|
ENTRYPOINT ["imaginary", "-p", "${PORT:-9000}"]
|