You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apache/pinot/CVE-2024-56325/Dockerfile
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,20 @@ RUN java -version
13
13
14
14
FROM jdk21-base AS pinot
15
15
16
+
ARG PINOT_VERSION=1.2.0
17
+
16
18
RUN apt update && apt install wget -y
17
-
RUN wget https://www.apache.org/dyn/closer.lua/pinot/apache-pinot-1.2.0/apache-pinot-1.2.0-bin.tar.gz?action=download -O apache-pinot-1.2.0-bin.tar.gz
18
-
RUN tar -zxvf apache-pinot-1.2.0-bin.tar.gz
19
+
RUN wget https://www.apache.org/dyn/closer.lua/pinot/apache-pinot-${PINOT_VERSION}/apache-pinot-${PINOT_VERSION}-bin.tar.gz?action=download -O apache-pinot-${PINOT_VERSION}-bin.tar.gz
20
+
RUN tar -zxvf apache-pinot-${PINOT_VERSION}-bin.tar.gz
0 commit comments