all-in-one/Containers/whiteboard/Dockerfile
Simon L. f529714a07 fix whiteboard container
Signed-off-by: Simon L. <szaimen@e.mail.de>
2024-09-17 10:35:54 +02:00

12 lines
277 B
Docker

# syntax=docker/dockerfile:latest
FROM ghcr.io/nextcloud-releases/whiteboard:v1.0.1
RUN set -ex; \
apk upgrade --no-cache -a; \
apk add --no-cache bash
COPY --chmod=775 start.sh /start.sh
ENTRYPOINT ["/start.sh"]
LABEL com.centurylinklabs.watchtower.enable="false"