From adaeaa59fb1a4648ae30220a47f5ee198f4de581 Mon Sep 17 00:00:00 2001 From: bel Date: Sat, 11 Nov 2023 10:48:31 -0700 Subject: [PATCH] install cli --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c8e4667..eae38ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM registry-app.inhome.blapointe.com:5001/external/debian:latest ARG INFLUXDB_VERSION -RUN set -e; apt update; apt -y install --no-install-recommends wget ca-certificates; cd $(mktemp -d); wget https://dl.influxdata.com/influxdb/releases/influxdb2-${INFLUXDB_VERSION}_linux_amd64.tar.gz; tar -xf ./*.tar.gz; cp -r ./influxdb*/ /influxdb/ +RUN set -e; apt update; apt -y install --no-install-recommends wget ca-certificates; cd $(mktemp -d); wget https://dl.influxdata.com/influxdb/releases/influxdb2-${INFLUXDB_VERSION}_linux_amd64.tar.gz; tar -xf ./*.tar.gz; cp -r ./influxdb*/ /influxdb/; rm -rf ./* || true; wget https://dl.influxdata.com/influxdb/releases/influxdb2-client-2.7.3-linux-amd64.tar.gz; tar -xf ./*.tar.gz; cp -r ./influx*/ /influx-cli/ WORKDIR /data ENTRYPOINT ["/influxdb/usr/bin/influxd"] CMD []