Skip to content

Commit

Permalink
Repo-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Workflow committed Sep 17, 2024
1 parent a9d0f09 commit aaf821e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Containers/watchtower/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions Containers/whiteboard/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down

0 comments on commit aaf821e

Please sign in to comment.