mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-21 21:07:41 +08:00
1edb422f3d
Signed-off-by: Zoey <zoey@z0ey.de>
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:20220822
|
|
|
|
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 |