From e84b8ce18e7e98b31d7c89f0c7d325f63bb79195 Mon Sep 17 00:00:00 2001 From: DevMiner Date: Sat, 18 Feb 2023 20:16:35 +0100 Subject: [PATCH] fix: path inside Docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 06778ba..05c726c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,6 @@ WORKDIR /root/ RUN apk --no-cache add ca-certificates -COPY --from=builder /app/main . +COPY --from=builder /app/main /bin/postgres-s3-backup -CMD ["./main"] +CMD ["/bin/postgres-s3-backup"]