mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 03:24:48 +08:00
b6f8d3e8e9
Signed-off-by: Simon L <szaimen@e.mail.de>
18 lines
No EOL
433 B
Docker
18 lines
No EOL
433 B
Docker
# From https://github.com/h2non/imaginary/blob/master/Dockerfile
|
|
FROM nextcloud/imaginary:20221101
|
|
|
|
USER root
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
curl \
|
|
netcat \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
USER nobody
|
|
|
|
ENTRYPOINT ["/usr/local/bin/imaginary", "-return-size"]
|
|
|
|
HEALTHCHECK CMD nc -z localhost 9000 || exit 1 |