Skip to content

Commit 65e446e

Browse files
committed
Fix kapacitor package paths
1 parent 5b3630c commit 65e446e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

kapacitor/1.5/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" && \
2323
armel) ARCH='armel';; \
2424
*) echo "Unsupported architecture: ${dpkgArch}"; exit 1;; \
2525
esac && \
26-
wget --no-verbose https://dl.influxdata.com/kapacitor/releases/kapacitor_${KAPACITOR_VERSION}_${ARCH}.deb.asc && \
27-
wget --no-verbose https://dl.influxdata.com/kapacitor/releases/kapacitor_${KAPACITOR_VERSION}_${ARCH}.deb && \
28-
gpg --batch --verify kapacitor_${KAPACITOR_VERSION}_${ARCH}.deb.asc kapacitor_${KAPACITOR_VERSION}_${ARCH}.deb && \
29-
dpkg -i kapacitor_${KAPACITOR_VERSION}_${ARCH}.deb && \
30-
rm -f kapacitor_${KAPACITOR_VERSION}_${ARCH}.deb*
26+
wget --no-verbose https://dl.influxdata.com/kapacitor/releases/kapacitor_${KAPACITOR_VERSION}-1_${ARCH}.deb.asc && \
27+
wget --no-verbose https://dl.influxdata.com/kapacitor/releases/kapacitor_${KAPACITOR_VERSION}-1_${ARCH}.deb && \
28+
gpg --batch --verify kapacitor_${KAPACITOR_VERSION}-1_${ARCH}.deb.asc kapacitor_${KAPACITOR_VERSION}-1_${ARCH}.deb && \
29+
dpkg -i kapacitor_${KAPACITOR_VERSION}-1_${ARCH}.deb && \
30+
rm -f kapacitor_${KAPACITOR_VERSION}-1_${ARCH}.deb*
3131
COPY kapacitor.conf /etc/kapacitor/kapacitor.conf
3232

3333
EXPOSE 9092

0 commit comments

Comments
 (0)