This file contains hidden or 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
FROM ubuntu:25.04 | |
# in order to use rclone properly for instance rclone lsd ... with pcloud | |
# we need to install ca-certificates, otherwise we run into "failed to verify certificate:" | |
RUN apt-get update -yqq \ | |
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | |
borgbackup=1.4.0-5 \ | |
ca-certificates \ | |
rclone=1.60.1+dfsg-4 \ | |
&& apt-get autoremove -qq --purge \ |