mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-06 05:51:49 +08:00
53defc5579
Signed-off-by: Simon L <szaimen@e.mail.de>
19 lines
486 B
Docker
19 lines
486 B
Docker
# From a file located probably somewhere here: https://github.com/CollaboraOnline/online/tree/master/docker
|
|
FROM collabora/code:23.05.0.5.1
|
|
|
|
USER root
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
export DEBIAN_FRONTEND=noninteractive; \
|
|
apt-get install -y --no-install-recommends \
|
|
tzdata \
|
|
netcat-openbsd \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
USER 100
|
|
|
|
HEALTHCHECK CMD nc -z localhost 9980 || exit 1
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|