mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-10 07:27:44 +08:00
faecc028fe
Signed-off-by: Simon L. <szaimen@e.mail.de>
14 lines
300 B
Docker
14 lines
300 B
Docker
# syntax=docker/dockerfile:latest
|
|
FROM ghcr.io/nextcloud-releases/whiteboard:v1.0.4
|
|
|
|
USER 65534
|
|
RUN set -ex; \
|
|
apk upgrade --no-cache -a; \
|
|
apk add --no-cache bash
|
|
USER nobody
|
|
|
|
COPY --chmod=775 start.sh /start.sh
|
|
|
|
ENTRYPOINT ["/start.sh"]
|
|
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|