hassio-addon-rclone/rclone/Dockerfile
ViViDboarder 1c9f9ce58f Unpin python3 and pip versions
Since this is built on device, the base image updates unpredictably. I can
pin these again if I run my own off-device build pipeline.
2023-11-07 09:09:59 -08:00

21 lines
416 B
Docker
Executable File

ARG BUILD_FROM=homeassistant/aarch64-base
FROM $BUILD_FROM
ENV LANG C.UTF-8
ARG BUILD_ARCH=aarch64
ARG VERSION=v1.55.1
# Install rclone
COPY install_rclone.sh /
RUN /install_rclone.sh "${VERSION}" "${BUILD_ARCH}"
# Add timegaps for pruning backups
RUN apk add --no-cache python3 py3-pip && \
pip install --no-cache-dir timegaps==0.1.1 && \
apk del py3-pip
ENV XDG_CONFIG_HOME=/data
COPY rootfs /