File tree Expand file tree Collapse file tree 15 files changed +30
-30
lines changed Expand file tree Collapse file tree 15 files changed +30
-30
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ RUN apk add --no-cache ca-certificates && \
7
7
ENV CHRONOGRAF_VERSION 1.6.2
8
8
9
9
RUN set -ex && \
10
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
10
+ apk add --no-cache --virtual .build-deps wget gnupg && \
11
11
for key in \
12
12
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
13
13
do \
@@ -19,7 +19,7 @@ RUN set -ex && \
19
19
wget --no-verbose https://dl.influxdata.com/chronograf/releases/chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
20
20
gpg --batch --verify chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz.asc chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
21
21
mkdir -p /usr/src && \
22
- tar -C /usr/src -xzf chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
22
+ tar -C /usr/src -xf chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
23
23
rm -f /usr/src/chronograf-*/chronograf.conf && \
24
24
chmod +x /usr/src/chronograf-*/* && \
25
25
cp -a /usr/src/chronograf-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ RUN apk add --no-cache ca-certificates && \
7
7
ENV CHRONOGRAF_VERSION 1.7.17
8
8
9
9
RUN set -ex && \
10
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
10
+ apk add --no-cache --virtual .build-deps wget gnupg && \
11
11
for key in \
12
12
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
13
13
do \
@@ -19,7 +19,7 @@ RUN set -ex && \
19
19
wget --no-verbose https://dl.influxdata.com/chronograf/releases/chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
20
20
gpg --batch --verify chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz.asc chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
21
21
mkdir -p /usr/src && \
22
- tar -C /usr/src -xzf chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
22
+ tar -C /usr/src -xf chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
23
23
rm -f /usr/src/chronograf-*/chronograf.conf && \
24
24
chmod +x /usr/src/chronograf-*/* && \
25
25
cp -a /usr/src/chronograf-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ RUN apk add --no-cache ca-certificates && \
7
7
ENV CHRONOGRAF_VERSION 1.8.4
8
8
9
9
RUN set -ex && \
10
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
10
+ apk add --no-cache --virtual .build-deps wget gnupg && \
11
11
for key in \
12
12
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
13
13
do \
@@ -19,7 +19,7 @@ RUN set -ex && \
19
19
wget --no-verbose https://dl.influxdata.com/chronograf/releases/chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
20
20
gpg --batch --verify chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz.asc chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
21
21
mkdir -p /usr/src && \
22
- tar -C /usr/src -xzf chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
22
+ tar -C /usr/src -xf chronograf-${CHRONOGRAF_VERSION}-static_linux_amd64.tar.gz && \
23
23
rm -f /usr/src/chronograf-*/chronograf.conf && \
24
24
chmod +x /usr/src/chronograf-*/* && \
25
25
cp -a /usr/src/chronograf-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apk add --no-cache tzdata bash ca-certificates && \
6
6
7
7
ENV INFLUXDB_VERSION 1.7.10
8
8
RUN set -ex && \
9
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
9
+ apk add --no-cache --virtual .build-deps wget gnupg && \
10
10
for key in \
11
11
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
12
12
do \
@@ -18,7 +18,7 @@ RUN set -ex && \
18
18
wget --no-verbose https://dl.influxdata.com/influxdb/releases/influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
19
19
gpg --batch --verify influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz.asc influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
20
20
mkdir -p /usr/src && \
21
- tar -C /usr/src -xzf influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
21
+ tar -C /usr/src -xf influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
22
22
rm -f /usr/src/influxdb-*/influxdb.conf && \
23
23
chmod +x /usr/src/influxdb-*/* && \
24
24
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apk add --no-cache tzdata bash ca-certificates && \
6
6
7
7
ENV INFLUXDB_VERSION 1.7.10-c1.7.10
8
8
RUN set -ex && \
9
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
9
+ apk add --no-cache --virtual .build-deps wget gnupg && \
10
10
for key in \
11
11
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
12
12
do \
@@ -18,7 +18,7 @@ RUN set -ex && \
18
18
wget --no-verbose https://dl.influxdata.com/enterprise/releases/influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
19
19
gpg --batch --verify influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz.asc influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
20
20
mkdir -p /usr/src && \
21
- tar -C /usr/src -xzf influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
21
+ tar -C /usr/src -xf influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
22
22
rm -f /usr/src/influxdb-*/influxdb.conf && \
23
23
chmod +x /usr/src/influxdb-*/* && \
24
24
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apk add --no-cache tzdata bash ca-certificates && \
6
6
7
7
ENV INFLUXDB_VERSION 1.7.10-c1.7.10
8
8
RUN set -ex && \
9
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
9
+ apk add --no-cache --virtual .build-deps wget gnupg && \
10
10
for key in \
11
11
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
12
12
do \
@@ -18,7 +18,7 @@ RUN set -ex && \
18
18
wget --no-verbose https://dl.influxdata.com/enterprise/releases/influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
19
19
gpg --batch --verify influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz.asc influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
20
20
mkdir -p /usr/src && \
21
- tar -C /usr/src -xzf influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
21
+ tar -C /usr/src -xf influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
22
22
rm -f /usr/src/influxdb-*/influxdb-meta.conf && \
23
23
chmod +x /usr/src/influxdb-*/* && \
24
24
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apk add --no-cache tzdata bash ca-certificates && \
6
6
7
7
ENV INFLUXDB_VERSION 1.8.2
8
8
RUN set -ex && \
9
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
9
+ apk add --no-cache --virtual .build-deps wget gnupg && \
10
10
for key in \
11
11
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
12
12
do \
@@ -18,7 +18,7 @@ RUN set -ex && \
18
18
wget --no-verbose https://dl.influxdata.com/influxdb/releases/influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
19
19
gpg --batch --verify influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz.asc influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
20
20
mkdir -p /usr/src && \
21
- tar -C /usr/src -xzf influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
21
+ tar -C /usr/src -xf influxdb-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
22
22
rm -f /usr/src/influxdb-*/influxdb.conf && \
23
23
chmod +x /usr/src/influxdb-*/* && \
24
24
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apk add --no-cache tzdata bash ca-certificates && \
6
6
7
7
ENV INFLUXDB_VERSION 1.8.2-c1.8.2
8
8
RUN set -ex && \
9
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
9
+ apk add --no-cache --virtual .build-deps wget gnupg && \
10
10
for key in \
11
11
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
12
12
do \
@@ -18,7 +18,7 @@ RUN set -ex && \
18
18
wget --no-verbose https://dl.influxdata.com/enterprise/releases/influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
19
19
gpg --batch --verify influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz.asc influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
20
20
mkdir -p /usr/src && \
21
- tar -C /usr/src -xzf influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
21
+ tar -C /usr/src -xf influxdb-data-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
22
22
rm -f /usr/src/influxdb-*/influxdb.conf && \
23
23
chmod +x /usr/src/influxdb-*/* && \
24
24
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apk add --no-cache tzdata bash ca-certificates && \
6
6
7
7
ENV INFLUXDB_VERSION 1.8.2-c1.8.2
8
8
RUN set -ex && \
9
- apk add --no-cache --virtual .build-deps wget gnupg tar && \
9
+ apk add --no-cache --virtual .build-deps wget gnupg && \
10
10
for key in \
11
11
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
12
12
do \
@@ -18,7 +18,7 @@ RUN set -ex && \
18
18
wget --no-verbose https://dl.influxdata.com/enterprise/releases/influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
19
19
gpg --batch --verify influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz.asc influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
20
20
mkdir -p /usr/src && \
21
- tar -C /usr/src -xzf influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
21
+ tar -C /usr/src -xf influxdb-meta-${INFLUXDB_VERSION}-static_linux_amd64.tar.gz && \
22
22
rm -f /usr/src/influxdb-*/influxdb-meta.conf && \
23
23
chmod +x /usr/src/influxdb-*/* && \
24
24
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM alpine:3.12
3
3
RUN apk add --no-cache bash
4
4
5
5
RUN set -ex && \
6
- apk add --no-cache --virtual .build-deps wget gnupg tar ca-certificates && \
6
+ apk add --no-cache --virtual .build-deps wget gnupg ca-certificates && \
7
7
update-ca-certificates && \
8
8
for key in \
9
9
05CE15085FC09D18E99EFB22684A14CF2582E0C5 ; \
@@ -16,7 +16,7 @@ RUN set -ex && \
16
16
wget --no-verbose https://dl.influxdata.com/influxdb/nightlies/influxdb-static-nightly_linux_amd64.tar.gz && \
17
17
gpg --batch --verify influxdb-static-nightly_linux_amd64.tar.gz.asc influxdb-static-nightly_linux_amd64.tar.gz && \
18
18
mkdir -p /usr/src && \
19
- tar -C /usr/src -xzf influxdb-static-nightly_linux_amd64.tar.gz && \
19
+ tar -C /usr/src -xf influxdb-static-nightly_linux_amd64.tar.gz && \
20
20
rm -f /usr/src/influxdb-*/influxdb.conf && \
21
21
chmod +x /usr/src/influxdb-*/* && \
22
22
cp -a /usr/src/influxdb-*/* /usr/bin/ && \
You can’t perform that action at this time.
0 commit comments