fix path error in packaging Dockerfile

This commit is contained in:
haoranchen 2025-03-03 16:41:21 +08:00 committed by GitHub
parent 73e8720b0a
commit 79ca1c4bcf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ ENV DEBIAN_FRONTEND=noninteractive
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${cpuType} /tini
RUN chmod +x /tini
RUN tar -zxf ${pkgFile} && \
RUN tar -zxf /root/${pkgFile} && \
/bin/bash /root/${dirName}/install.sh -e no && \
rm /root/${pkgFile} && \
rm -rf /root/${dirName} && \
@ -46,4 +46,4 @@ COPY ./bin/* /usr/bin/
ENTRYPOINT ["/tini", "--", "/usr/bin/entrypoint.sh"]
CMD ["taosd"]
VOLUME [ "/var/lib/taos", "/var/log/taos", "/corefile" ]
VOLUME [ "/var/lib/taos", "/var/log/taos", "/corefile" ]