Skip to content

Commit 02a03b6

Browse files
committed
ensure latest rclone
1 parent 79278d7 commit 02a03b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV DEBIAN_FRONTEND=noninteractive
55
RUN apt update && \
66
apt upgrade -y && \
77
apt install -y --no-install-recommends \
8-
curl ca-certificates git gnupg2 python3 pipx rclone vim wget && \
8+
curl ca-certificates git gnupg2 python3 pipx unzip vim wget && \
99
# Docker
1010
install -m 0755 -d /etc/apt/keyrings && \
1111
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg && \
@@ -21,6 +21,8 @@ RUN apt update && \
2121
echo "deb [signed-by=/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc] https://apt.postgresql.org/pub/repos/apt bookworm-pgdg main" \
2222
> /etc/apt/sources.list.d/pgdg.list && \
2323
apt update && apt install -y --no-install-recommends postgresql-client-17 && \
24+
# rclone
25+
curl https://rclone.org/install.sh | bash && \
2426
rm -rf /var/lib/apt/lists/*
2527

2628
# misc tools

0 commit comments

Comments
 (0)