Skip to content

Commit

Permalink
Update Dockerfile to download tataki binary using curl
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaccha committed Apr 18, 2024
1 parent 461c39f commit 35f9076
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ RUN curl -fsSL -o /tmp/docker.tgz https://download.docker.com/linux/static/stabl
mv /tmp/docker/* /usr/bin/ && \
rm -rf /tmp/docker /tmp/docker.tgz

ADD https://github.com/sapporo-wes/tataki/releases/latest/download/tataki /usr/bin/tataki
RUN chmod +x /usr/bin/tataki
# ADD https://github.com/sapporo-wes/tataki/releases/latest/download/tataki /usr/bin/tataki
RUN curl -fsSL -o /usr/bin/tataki https://github.com/sapporo-wes/tataki/releases/latest/download/tataki-$(uname -m) && \
chmod +x /usr/bin/tataki

WORKDIR /app

Expand Down

0 comments on commit 35f9076

Please sign in to comment.