File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ RUN if [ "${DOWNLOAD_PLUGINS}" = "true" ]; then apt-get update && apt-get instal
3232
3333FROM debian:trixie-slim
3434
35- # Set to "true" to install jq and the optional git and rsync dependencies
35+ # Set to "true" to install jq
3636ARG INSTALL_OPTIONAL_PACKAGES=false
3737
3838RUN apt-get update && apt-get -y upgrade && apt-get install --no-install-recommends -y ca-certificates media-types && rm -rf /var/lib/apt/lists/*
3939
40- RUN if [ "${INSTALL_OPTIONAL_PACKAGES}" = "true" ]; then apt-get update && apt-get install --no-install-recommends -y jq git rsync && rm -rf /var/lib/apt/lists/*; fi
40+ RUN if [ "${INSTALL_OPTIONAL_PACKAGES}" = "true" ]; then apt-get update && apt-get install --no-install-recommends -y jq && rm -rf /var/lib/apt/lists/*; fi
4141
4242RUN mkdir -p /etc/sftpgo /var/lib/sftpgo /usr/share/sftpgo /srv/sftpgo/data /srv/sftpgo/backups
4343
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ RUN set -xe && \
2727
2828FROM alpine:3.22
2929
30- # Set to "true" to install jq and the optional git and rsync dependencies
30+ # Set to "true" to install jq
3131ARG INSTALL_OPTIONAL_PACKAGES=false
3232
3333RUN apk -U upgrade --no-cache && apk add --update --no-cache ca-certificates tzdata mailcap
3434
35- RUN if [ "${INSTALL_OPTIONAL_PACKAGES}" = "true" ]; then apk add --update --no-cache jq git rsync ; fi
35+ RUN if [ "${INSTALL_OPTIONAL_PACKAGES}" = "true" ]; then apk add --update --no-cache jq; fi
3636
3737RUN mkdir -p /etc/sftpgo /var/lib/sftpgo /usr/share/sftpgo /srv/sftpgo/data /srv/sftpgo/backups
3838
You can’t perform that action at this time.
0 commit comments