mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 22:46:55 +00:00
build(deps): bump collabora/code from 24.04.13.3.1 to 25.04.2.1.1 in /Containers/collabora
23 lines
647 B
Docker
23 lines
647 B
Docker
# syntax=docker/dockerfile:latest
|
|
# From a file located probably somewhere here: https://github.com/CollaboraOnline/online/blob/master/docker/from-packages/Dockerfile
|
|
FROM collabora/code:25.04.2.1.1
|
|
|
|
USER root
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
# hadolint ignore=DL3008
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
netcat-openbsd \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*;
|
|
|
|
COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
|
|
|
USER 1001
|
|
|
|
HEALTHCHECK --start-period=60s --retries=9 CMD /healthcheck.sh
|
|
LABEL com.centurylinklabs.watchtower.enable="false" \
|
|
org.label-schema.vendor="Nextcloud"
|