mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-04 04:51:59 +08:00
06315218b8
Bumps nextcloud/imaginary from 20220822 to 20220905. --- updated-dependencies: - dependency-name: nextcloud/imaginary dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
15 lines
No EOL
360 B
Docker
15 lines
No EOL
360 B
Docker
# From https://github.com/h2non/imaginary/blob/master/Dockerfile
|
|
FROM nextcloud/imaginary:20220905
|
|
|
|
USER root
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
curl \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
USER nobody
|
|
|
|
HEALTHCHECK CMD curl -skI 127.0.0.1:9000 || exit 1 |