From 74cb5e02643391237afad8907406830b5a71ce8b Mon Sep 17 00:00:00 2001 From: Tom Neuber Date: Tue, 30 Jul 2024 21:21:34 +0200 Subject: [PATCH] refactor(Dockerfile): use new backup command as default --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a157fdf..c0df2a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update --yes && \ apt-get install --yes build-essential # Build the actual binary -RUN CGO_ENABLED=0 go build -o grafana-backuper main.go +RUN CGO_ENABLED=0 go build -o grafana-backuper cmd/main.go # -- -- -- -- -- -- @@ -22,4 +22,4 @@ WORKDIR /app # Copy built binary from build image COPY --from=build /workspace/grafana-backuper /app -ENTRYPOINT ["/app/grafana-backuper"] +ENTRYPOINT ["/app/grafana-backuper backup"]