mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-14 11:04:28 +08:00
3bba9da0d5
Bumps collabora/code from 22.05.7.2.1 to 22.05.7.3.1. --- updated-dependencies: - dependency-name: collabora/code dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
421 B
Docker
18 lines
421 B
Docker
# From a file located probably somewhere here: https://github.com/CollaboraOnline/online/tree/master/docker
|
|
FROM collabora/code:22.05.7.3.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
|