File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,15 @@ RUN echo 'deb https://repo.percona.com/apt stretch main' > /etc/apt/sources.list
2626
2727RUN apt-get update \
2828 && apt-get install -y --no-install-recommends \
29- percona-toolkit percona-xtrabackup-24 \
29+ percona-toolkit percona-xtrabackup-24 unzip \
3030 && wget https://github.com/maxbube/mydumper/releases/download/v0.9.5/mydumper_0.9.5-2.stretch_amd64.deb \
3131 && dpkg -i mydumper_0.9.5-2.stretch_amd64.deb \
32- && rm -rf mydumper_0.9.5-2.stretch_amd64.deb /var/lib/apt/lists/*
32+ && rm -rf mydumper_0.9.5-2.stretch_amd64.deb /var/lib/apt/lists/* \
33+ && wget https://downloads.rclone.org/rclone-current-linux-amd64.zip \
34+ && unzip rclone-current-linux-amd64.zip \
35+ && mv rclone-*-linux-amd64/rclone /usr/local/bin/ \
36+ && rm -rf rclone-*-linux-amd64 rclone-current-linux-amd64.zip \
37+ && chmod 755 /usr/local/bin/rclone
3338
3439COPY ./hack/docker/sidecar-entrypoint.sh /usr/local/bin/sidecar-entrypoint.sh
3540COPY --from=builder /go/src/github.com/presslabs/mysql-operator/mysql-operator-sidecar /usr/local/bin/mysql-operator-sidecar
You can’t perform that action at this time.
0 commit comments