2024-09-16 17:59:15 +02:00
|
|
|
# syntax=docker/dockerfile:latest
|
2024-12-03 11:56:35 +01:00
|
|
|
# Probably from this file: https://github.com/nextcloud/whiteboard/blob/main/Dockerfile
|
2025-09-12 04:19:40 +00:00
|
|
|
FROM ghcr.io/nextcloud-releases/whiteboard:v1.2.0
|
2024-09-16 17:59:15 +02:00
|
|
|
|
2024-11-06 16:12:36 +01:00
|
|
|
USER root
|
2024-09-17 10:35:54 +02:00
|
|
|
RUN set -ex; \
|
|
|
|
|
apk upgrade --no-cache -a; \
|
2025-03-06 16:00:53 +01:00
|
|
|
apk add --no-cache bash; \
|
|
|
|
|
chmod 777 -R /tmp
|
2024-11-06 16:12:36 +01:00
|
|
|
USER 65534
|
2024-09-17 10:35:54 +02:00
|
|
|
|
2024-09-16 17:59:15 +02:00
|
|
|
COPY --chmod=775 start.sh /start.sh
|
2024-12-03 11:56:35 +01:00
|
|
|
COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
|
|
|
|
|
|
|
|
|
HEALTHCHECK CMD /healthcheck.sh
|
2024-09-16 17:59:15 +02:00
|
|
|
|
2025-01-28 12:36:47 +01:00
|
|
|
WORKDIR /tmp
|
|
|
|
|
|
2024-09-16 17:59:15 +02:00
|
|
|
ENTRYPOINT ["/start.sh"]
|
|
|
|
|
|
2025-05-19 14:31:29 +02:00
|
|
|
LABEL com.centurylinklabs.watchtower.enable="false" \
|
|
|
|
|
org.label-schema.vendor="Nextcloud"
|