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-01-22 04:46:59 +00:00
|
|
|
FROM ghcr.io/nextcloud-releases/whiteboard:v1.0.5
|
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; \
|
|
|
|
|
apk add --no-cache bash
|
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
|
|
|
|
|
|
|
|
ENTRYPOINT ["/start.sh"]
|
|
|
|
|
|
|
|
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|