Skip to content

Commit 9fe1174

Browse files
Add JQ to all images
1 parent e0f1879 commit 9fe1174

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

backup/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:latest
22

33
ARG TARGETARCH
44

5-
RUN apk update && apk add zip gzip xz curl wget rsync openssl gpg ca-certificates lsb-release
5+
RUN apk update && apk add zip gzip xz curl wget rsync openssl gpg ca-certificates lsb-release jq
66

77
# Install rclone
88
RUN curl -sSL https://downloads.rclone.org/rclone-current-linux-$TARGETARCH.zip -o rclone.zip && \

backup/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG TARGETARCH
44

55
# Install common utils
66
RUN apt-get -y update && \
7-
apt-get -y install zip gzip xz-utils curl wget rsync openssl gpg cron ca-certificates lsb-release
7+
apt-get -y install zip gzip xz-utils curl wget rsync openssl gpg cron ca-certificates lsb-release jq
88

99
# Install rclone
1010
RUN curl -sSL https://downloads.rclone.org/rclone-current-linux-$TARGETARCH.zip -o rclone.zip && \

mariadb/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:latest
22

33
ARG TARGETARCH
44

5-
RUN apk update && apk add zip gzip xz curl wget rsync openssl gpg ca-certificates lsb-release mariadb-client
5+
RUN apk update && apk add zip gzip xz curl wget rsync openssl gpg ca-certificates lsb-release jq mariadb-client
66

77
# Install rclone
88
RUN curl -sSL https://downloads.rclone.org/rclone-current-linux-$TARGETARCH.zip -o rclone.zip && \

mariadb/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG TARGETARCH
44

55
# Install common utils and add mariadb utils
66
RUN apt-get -y update && \
7-
apt-get -y install zip gzip xz-utils curl wget rsync openssl gpg cron ca-certificates lsb-release mariadb-client
7+
apt-get -y install zip gzip xz-utils curl wget rsync openssl gpg cron ca-certificates lsb-release jq mariadb-client
88

99
# Install rclone
1010
RUN curl -sSL https://downloads.rclone.org/rclone-current-linux-$TARGETARCH.zip -o rclone.zip && \

mongodb/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:latest
22

33
ARG TARGETARCH
44

5-
RUN apk update && apk add zip gzip xz curl wget rsync openssl gpg ca-certificates lsb-release mongodb-tools nodejs npm && npm i -g mongosh
5+
RUN apk update && apk add zip gzip xz curl wget rsync openssl gpg ca-certificates lsb-release jq mongodb-tools nodejs npm && npm i -g mongosh
66

77
# Install rclone
88
RUN curl -sSL https://downloads.rclone.org/rclone-current-linux-$TARGETARCH.zip -o rclone.zip && \

mongodb/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG TARGETARCH
44

55
# Install common utils and MongoDB
66
RUN apt-get -y update && \
7-
apt-get -y install zip gzip xz-utils curl wget rsync openssl gpg cron ca-certificates lsb-release && \
7+
apt-get -y install zip gzip xz-utils curl wget rsync openssl gpg cron ca-certificates lsb-release jq && \
88
curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg --dearmor && \
99
echo "deb [ arch=$TARGETARCH signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] http://repo.mongodb.org/apt/ubuntu $(lsb_release -cs)/mongodb-org/8.0 multiverse" > /etc/apt/sources.list.d/mongodb-org-8.0.list && \
1010
apt-get -y update && \

postgres/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM alpine:latest
33
ARG POSTGRES_VERSION=15
44
ARG TARGETARCH
55

6-
RUN apk update && apk add zip gzip xz curl wget rsync openssl gpg ca-certificates lsb-release postgresql${POSTGRES_VERSION}-client
6+
RUN apk update && apk add zip gzip xz curl wget rsync openssl gpg ca-certificates lsb-release jq postgresql${POSTGRES_VERSION}-client
77

88
# Install rclone
99
RUN curl -sSL https://downloads.rclone.org/rclone-current-linux-$TARGETARCH.zip -o rclone.zip && \

postgres/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG TARGETARCH
55

66
# Install common utils and add PostgreSQL repository
77
RUN apt-get -y update && \
8-
apt-get -y install zip gzip xz-utils curl wget rsync openssl gpg cron ca-certificates lsb-release && \
8+
apt-get -y install zip gzip xz-utils curl wget rsync openssl gpg cron ca-certificates lsb-release jq && \
99
install -d /usr/share/postgresql-common/pgdg && \
1010
curl -o /usr/share/postgresql-common/pgdg/apt.postgresql.org.asc --fail https://www.postgresql.org/media/keys/ACCC4CF8.asc && \
1111
sh -c 'echo "deb [signed-by=/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc] https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'

0 commit comments

Comments
 (0)