mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-16 03:56:02 +08:00
5b35c443e7
Bumps collabora/code from 24.04.7.2.1 to 24.04.8.1.1. --- updated-dependencies: - dependency-name: collabora/code dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
531 B
Docker
21 lines
531 B
Docker
# syntax=docker/dockerfile:latest
|
|
# From a file located probably somewhere here: https://github.com/CollaboraOnline/online/tree/master/docker
|
|
FROM collabora/code:24.04.8.1.1
|
|
|
|
USER root
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
# hadolint ignore=DL3008
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
tzdata \
|
|
netcat-openbsd \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*;
|
|
|
|
USER 100
|
|
|
|
HEALTHCHECK CMD nc -z 127.0.0.1 9980 || exit 1
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|