Skip to content

Commit

Permalink
update Dockerfile to use new release binary location.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhadfield committed Mar 26, 2023
1 parent 3a551fd commit 3ced511
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ RUN apk add --update --no-cache ca-certificates bash curl git jq grep \
ARG TAG

WORKDIR /tmp

RUN curl -L -o soba.tar.gz https://github.com/jonhadfield/soba/releases/download/$TAG/soba_${TAG}_linux_amd64.tar.gz \
RUN curl -L -o soba.tar.gz https://github.com/jonhadfield/soba/releases/download/$TAG/soba_linux_amd64.tar.gz \
&& tar -xvzf soba.tar.gz \
&& rm ./*.gz \
&& mv ./*amd64/soba /soba \
&& mv ./soba /soba \
&& rm -rf /tmp/* \
&& chmod 755 /soba

Expand Down

0 comments on commit 3ced511

Please sign in to comment.