From 2f6b3b8978ee196fc289926d99353ef17b726cd6 Mon Sep 17 00:00:00 2001 From: olalekan odukoya Date: Mon, 23 Feb 2026 22:02:40 +0100 Subject: [PATCH] fix build step in release.Dockerfile --- release.Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/release.Dockerfile b/release.Dockerfile index 88914e2901..3c223c74cf 100644 --- a/release.Dockerfile +++ b/release.Dockerfile @@ -12,15 +12,13 @@ COPY convoy /cmd # Copy the migrations directory COPY sql/ /sql/ -# Copy the startup script -COPY configs/local/start.sh /start.sh - # Set permissions -RUN chmod +x /cmd /start.sh +RUN chmod +x /cmd # Install necessary dependencies RUN apk add --no-cache gcompat # Set the startup command -CMD ["/start.sh"] +ENTRYPOINT ["/cmd"] +CMD ["server", "--config", "convoy.json"]