From 35f9076497cf48acca6d8179f13918da19624837 Mon Sep 17 00:00:00 2001 From: fmaccha Date: Fri, 19 Apr 2024 01:43:06 +0900 Subject: [PATCH] Update Dockerfile to download tataki binary using curl --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index da0d158..d3826af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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