Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 96698c7

Browse files
author
Luke Hinds
committed
Fix release download
1 parent b1eeed9 commit 96698c7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
3636
WORKDIR /usr/src/
3737

3838
# Set the release URL (this should be static and not change often) and download latest
39-
ARG LATEST_RELEASE="https://api.github.com/repos/stacklok/codegate-ui/releases/latest"
40-
RUN curl -s ${LATEST_RELEASE} | jq -r '.zipball_url' | xargs curl -L -o main.zip
39+
RUN curl -s https://api.github.com/repos/stacklok/codegate-ui/releases/latest | jq -r '.zipball_url' | xargs curl -L -o main.zip
4140

4241
# Extract the downloaded zip file
4342
RUN unzip main.zip

0 commit comments

Comments
 (0)