2022-08-17 15:09:22 +02:00
|
|
|
# From https://github.com/h2non/imaginary/blob/master/Dockerfile
|
2023-03-01 13:06:33 +00:00
|
|
|
FROM nextcloud/imaginary:20230301
|
2022-08-25 15:06:23 +02:00
|
|
|
|
|
|
|
|
USER root
|
|
|
|
|
RUN set -ex; \
|
|
|
|
|
\
|
|
|
|
|
apt-get update; \
|
|
|
|
|
apt-get install -y --no-install-recommends \
|
2022-10-06 22:34:10 +02:00
|
|
|
netcat \
|
2022-08-25 15:06:23 +02:00
|
|
|
; \
|
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
USER nobody
|
|
|
|
|
|
2023-02-01 11:38:59 +01:00
|
|
|
ENTRYPOINT ["/usr/local/bin/imaginary", "-return-size", "-max-allowed-resolution", "222.2"]
|
2022-11-11 15:28:48 +01:00
|
|
|
|
2023-01-30 14:54:09 +01:00
|
|
|
HEALTHCHECK CMD nc -z localhost 9000 || exit 1
|
2023-01-30 15:33:12 +01:00
|
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|