2024-02-16 16:21:18 +01:00
|
|
|
# syntax=docker/dockerfile:latest
|
2021-11-30 11:20:42 +01:00
|
|
|
# From a file located probably somewhere here: https://github.com/CollaboraOnline/online/tree/master/docker
|
2024-11-25 05:10:20 +00:00
|
|
|
FROM collabora/code:24.04.10.1.1
|
2022-05-18 18:36:51 +02:00
|
|
|
|
|
|
|
|
USER root
|
2024-06-21 13:27:36 +02:00
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
2022-05-18 18:36:51 +02:00
|
|
|
|
2023-08-23 16:06:17 +02:00
|
|
|
# hadolint ignore=DL3008
|
2022-05-18 18:36:51 +02:00
|
|
|
RUN set -ex; \
|
|
|
|
|
\
|
|
|
|
|
apt-get update; \
|
|
|
|
|
apt-get install -y --no-install-recommends \
|
2024-12-05 15:33:05 +01:00
|
|
|
# # Disable because seems to be failing currently
|
|
|
|
|
# # tzdata \
|
2023-06-13 09:10:14 +02:00
|
|
|
netcat-openbsd \
|
2022-05-18 18:36:51 +02:00
|
|
|
; \
|
2023-07-13 14:55:56 +02:00
|
|
|
rm -rf /var/lib/apt/lists/*;
|
2022-05-18 18:36:51 +02:00
|
|
|
|
2024-12-03 11:30:23 +01:00
|
|
|
COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
|
|
|
|
|
2023-06-13 09:14:53 +02:00
|
|
|
USER 100
|
2022-08-25 15:06:23 +02:00
|
|
|
|
2024-12-03 11:30:23 +01:00
|
|
|
HEALTHCHECK --start-period=360s CMD /healthcheck.sh
|
2023-06-26 00:56:08 +02:00
|
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|