File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ ENV DEBIAN_FRONTEND=noninteractive
5
5
RUN apt update && \
6
6
apt upgrade -y && \
7
7
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 && \
9
9
# Docker
10
10
install -m 0755 -d /etc/apt/keyrings && \
11
11
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg && \
@@ -21,6 +21,8 @@ RUN apt update && \
21
21
echo "deb [signed-by=/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc] https://apt.postgresql.org/pub/repos/apt bookworm-pgdg main" \
22
22
> /etc/apt/sources.list.d/pgdg.list && \
23
23
apt update && apt install -y --no-install-recommends postgresql-client-17 && \
24
+ # rclone
25
+ curl https://rclone.org/install.sh | bash && \
24
26
rm -rf /var/lib/apt/lists/*
25
27
26
28
# misc tools
You can’t perform that action at this time.
0 commit comments