diff --git a/HealthMonitor.WebApi/Dockerfile b/HealthMonitor.WebApi/Dockerfile index 9dda4f6..4deefd9 100644 --- a/HealthMonitor.WebApi/Dockerfile +++ b/HealthMonitor.WebApi/Dockerfile @@ -12,20 +12,20 @@ RUN apt-get update --fix-missing\ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -# װ TDengine ͻ +# 安装 TDengine 客户端 RUN curl -o /tmp/TDengine-client-3.0.4.2-Linux-x64.tar.gz https://www.taosdata.com/assets-download/3.0/TDengine-client-3.0.4.2-Linux-x64.tar.gz WORKDIR /tmp -# ѹ +# 解压 RUN tar xvf TDengine-client-3.0.4.2-Linux-x64.tar.gz RUN ls -# лļ +# 切换文件夹 WORKDIR /tmp/TDengine-client-3.0.4.2 RUN ls -# ִаװű +# 执行安装脚本 RUN bash install_client.sh -# TDengine End Point +# 设置 TDengine 服务器的 End Point RUN echo "firstEp 47.116.142.20:6030" >> /etc/taos/taos.cfg FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build