-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated borg to 1.1.11 and borgmatic to 1.5.1
- Loading branch information
1 parent
4804b01
commit 5140ae0
Showing
3 changed files
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
FROM alpine:latest as builder | ||
MAINTAINER b3vis | ||
ARG BORG_VERSION=1.1.10 | ||
ARG BORGMATIC_VERSION=1.4.21 | ||
RUN apk upgrade --no-cache \ | ||
&& apk add --no-cache \ | ||
alpine-sdk \ | ||
python3-dev \ | ||
openssl-dev \ | ||
linux-headers \ | ||
# Below this line are requirements for ntfy | ||
libffi-dev \ | ||
&& pip3 install --upgrade pip \ | ||
&& pip3 install --upgrade ntfy[pid,emoji,xmpp,telegram,instapush,slack,rocketchat] | ||
|
||
FROM b3vis/borgmatic:v1.1.10-1.4.21 | ||
FROM b3vis/borgmatic:v1.1.11-1.5.1 | ||
MAINTAINER b3vis | ||
VOLUME /root/.config/ntfy | ||
COPY --from=builder /usr/lib/python3.8/site-packages /usr/lib/python3.8/ | ||
COPY --from=builder /usr/bin/ntfy /usr/bin/ | ||
COPY --from=builder /usr/bin/ntfy /usr/bin/ |