all-in-one/Containers/whiteboard/Dockerfile

13 lines
277 B
Text
Raw Normal View History

# 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"