From 48de2d0e5c6cd4ab5a416a5889285d2d68cd7141 Mon Sep 17 00:00:00 2001 From: Gerrit91 Date: Wed, 20 Sep 2023 10:16:30 +0200 Subject: [PATCH] Remove tini from backup-restore-sidecar container. --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 79d5e6d..1acc389 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,6 @@ -# TODO: remove tini in a future release, not required anymore since pre- and post-exec-cmd flags -FROM krallin/ubuntu-tini as ubuntu-tini - FROM ghcr.io/metal-stack/rethinkdb-backup-tools-build:v2.4.1 as rethinkdb-backup-tools FROM alpine:3.18 -# TODO: remove tini in a future release, not required anymore since pre- and post-exec-cmd flags -RUN apk add --no-cache tini ca-certificates COPY bin/backup-restore-sidecar /backup-restore-sidecar -COPY --from=ubuntu-tini /usr/local/bin/tini-static /ubuntu/tini COPY --from=rethinkdb-backup-tools /rethinkdb-dump /rethinkdb-restore /rethinkdb/ CMD ["/backup-restore-sidecar"]