mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-04 04:51:59 +08:00
64458c8931
Bumps nextcloud/imaginary from 20230101 to 20230201. --- updated-dependencies: - dependency-name: nextcloud/imaginary dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
450 B
Docker
17 lines
450 B
Docker
# From https://github.com/h2non/imaginary/blob/master/Dockerfile
|
|
FROM nextcloud/imaginary:20230201
|
|
|
|
USER root
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
netcat \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
USER nobody
|
|
|
|
ENTRYPOINT ["/usr/local/bin/imaginary", "-return-size"]
|
|
|
|
HEALTHCHECK CMD nc -z localhost 9000 || exit 1
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|