From e45e6aac7bd46e382dffe2569d175a7a93f08983 Mon Sep 17 00:00:00 2001 From: Jay Zhang Date: Mon, 11 Nov 2024 23:49:25 +0000 Subject: [PATCH] feat: install task --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a851b95..12114c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,9 @@ RUN wget --no-check-certificate --progress=dot:mega https://go.dev/dl/go1.22.3.l tar -C /usr/local -xvf go1.22.3.linux-amd64.tar.gz && \ rm go1.22.3.linux-amd64.tar.gz +# install task +RUN sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin + # install tman RUN wget --no-check-certificate --progress=dot:mega https://github.com/TEN-framework/ten_framework/releases/download/0.4.0/tman-linux-x64-clang-release.zip && \ unzip tman-linux-x64-clang-release.zip && \