mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-01 11:32:27 +08:00
eacca1ad5e
Bumps nextcloud-releases/whiteboard from v1.0.1 to v1.0.2. --- updated-dependencies: - dependency-name: nextcloud-releases/whiteboard dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
299 B
Docker
14 lines
299 B
Docker
# syntax=docker/dockerfile:latest
|
|
FROM ghcr.io/nextcloud-releases/whiteboard:v1.0.2
|
|
|
|
USER root
|
|
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"
|