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 []