mirror of
https://github.com/Steffo99/backup-duplicity.git
synced 2024-12-22 03:34:17 +00:00
Add proper python cryptography requirements
This commit is contained in:
parent
1f2a2ce267
commit
ad0496f0d2
1 changed files with 3 additions and 4 deletions
|
@ -5,9 +5,10 @@ FROM alpine:latest AS base
|
||||||
# RUN pacman --noconfirm -Syu duplicity python-pip python-pydrive2
|
# RUN pacman --noconfirm -Syu duplicity python-pip python-pydrive2
|
||||||
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
|
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
|
||||||
RUN \
|
RUN \
|
||||||
apk add py3-pip python3-dev gcc libffi-dev musl-dev duplicity rust cargo git && \
|
apk add py3-pip python3-dev gcc libffi-dev musl-dev openssl-dev pkgconfig duplicity rust cargo git && \
|
||||||
|
pip install --upgrade pip && \
|
||||||
pip install pydrive2 && \
|
pip install pydrive2 && \
|
||||||
apk del rust musl-dev libffi-dev gcc python3-dev cargo git
|
apk del rust musl-dev libffi-dev gcc python3-dev cargo git pkgconfig openssl-dev
|
||||||
|
|
||||||
WORKDIR /var/lib/duplicity
|
WORKDIR /var/lib/duplicity
|
||||||
ENV HOME="/var/lib/duplicity"
|
ENV HOME="/var/lib/duplicity"
|
||||||
|
@ -29,5 +30,3 @@ COPY ./backup.sh /etc/periodic/daily/backup.sh
|
||||||
# Configure duplicity
|
# Configure duplicity
|
||||||
ENV DUPLICITY_FULL_IF_OLDER_THAN=1M
|
ENV DUPLICITY_FULL_IF_OLDER_THAN=1M
|
||||||
|
|
||||||
# Final!
|
|
||||||
FROM base AS final
|
|
||||||
|
|
Loading…
Reference in a new issue