From 171267c2445b9486e01789f9ada4104116f9570f Mon Sep 17 00:00:00 2001 From: jiajingbin Date: Wed, 19 Mar 2025 12:09:02 +0800 Subject: [PATCH] enh: modify download method --- tools/tdgpt/dockerfile/tdgpt/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/tdgpt/dockerfile/tdgpt/Dockerfile b/tools/tdgpt/dockerfile/tdgpt/Dockerfile index 1a6ebbf3f1..618575b271 100644 --- a/tools/tdgpt/dockerfile/tdgpt/Dockerfile +++ b/tools/tdgpt/dockerfile/tdgpt/Dockerfile @@ -3,8 +3,8 @@ WORKDIR /apps ENV DEBIAN_FRONTEND=noninteractive ARG pkgFile ARG dirName -# taos.pth could be downloaded from nas(TDengine/anode/taos.pth) -ADD ${pkgFile} taos.pth taos_ts_server.py /apps/ +ADD http://192.168.1.131/data/nas/TDengine/anode/taos.pth /apps +ADD ${pkgFile} taos_ts_server.py /apps/ RUN cd ${dirName}/ && /bin/bash install.sh -e no && cd .. && rm -rf ${dirName} COPY entrypoint.sh /usr/local/bin/entrypoint.sh RUN chmod +x /usr/local/bin/entrypoint.sh