From 71598e226bf5d20d3451d3500eb573c9ae32c356 Mon Sep 17 00:00:00 2001 From: Kyle Root Date: Wed, 30 Nov 2022 12:07:32 -0500 Subject: [PATCH] Update convox CLI tool URL after the main website redesign --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e5a9a6..4e20f10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,9 @@ LABEL "com.github.actions.color"="blue" RUN apt-get -qq update && apt-get -qq -y install curl -RUN curl -L https://convox.com/cli/linux/convox -o /tmp/convox \ +RUN curl -L https://github.com/convox/convox/releases/latest/download/convox-linux -o /tmp/convox \ && mv /tmp/convox /usr/local/bin/convox \ && chmod 755 /usr/local/bin/convox COPY entrypoint.sh /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.sh"]