mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-11 01:13:41 +08:00
d1d66845a3
Bumps collabora/code from 22.05.12.4.1 to 22.05.13.1.1. --- updated-dependencies: - dependency-name: collabora/code dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
479 B
Docker
19 lines
479 B
Docker
# From a file located probably somewhere here: https://github.com/CollaboraOnline/online/tree/master/docker
|
|
FROM collabora/code:22.05.13.1.1
|
|
|
|
USER root
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
export DEBIAN_FRONTEND=noninteractive; \
|
|
apt-get install -y --no-install-recommends \
|
|
tzdata \
|
|
netcat \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
USER 104
|
|
|
|
HEALTHCHECK CMD nc -z localhost 9980 || exit 1
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|