fix whiteboard container

Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
Simon L. 2024-09-17 10:35:54 +02:00
parent a2f7a221d7
commit f529714a07
2 changed files with 6 additions and 1 deletions

View file

@ -4,7 +4,8 @@ FROM containrrr/watchtower:1.7.1 AS watchtower
FROM alpine:3.20.3
RUN apk upgrade --no-cache -a; \
RUN set -ex; \
apk upgrade --no-cache -a; \
apk add --no-cache bash
COPY --from=watchtower /watchtower /watchtower

View file

@ -1,6 +1,10 @@
# 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"]