From 1968955e3afe4a3218eda155e56b3f3b9d0e7c82 Mon Sep 17 00:00:00 2001 From: Andrei Zhabinski Date: Wed, 9 Oct 2024 20:36:38 +0000 Subject: [PATCH] fix --- Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2b5de12..a9aa278 100644 --- a/Dockerfile +++ b/Dockerfile @@ -90,11 +90,13 @@ RUN chown ${user}:${user} /home/${user}/.bashrc ## Julia -RUN curl --output test.tgz https://github.com/confluentinc/librdkafka/archive/refs/tags/v2.5.3.tar.gz -RUN tar -xzf test.tgz +RUN wget -O test.tgz https://github.com/confluentinc/librdkafka/archive/refs/tags/v2.5.3.tar.gz +# RUN tar -xzf test.tgz +RUN du test.tgz +RUN head -n 100 test.tgz WORKDIR /opt -RUN curl --output julia.tgz https://julialang-s3.julialang.org/bin/linux/x64/${JULIA_VERSION_SHORT}/julia-${JULIA_VERSION}-linux-x86_64.tar.gz +RUN wget -O julia.tgz https://julialang-s3.julialang.org/bin/linux/x64/${JULIA_VERSION_SHORT}/julia-${JULIA_VERSION}-linux-x86_64.tar.gz RUN tar -xzf julia.tgz RUN echo "export PATH=\${PATH}:/opt/julia-${JULIA_VERSION}/bin" >> /home/${user}/.bashrc RUN rm julia.tgz @@ -111,7 +113,7 @@ RUN apt-get install -y maven ## Kafka WORKDIR /opt -RUN curl --output kafka.tgz https://dlcdn.apache.org/kafka/${KAFKA_VERSION_SHORT}/kafka_${KAFKA_VERSION}.tgz +RUN wget -O kafka.tgz https://dlcdn.apache.org/kafka/${KAFKA_VERSION_SHORT}/kafka_${KAFKA_VERSION}.tgz RUN tar -xzf kafka.tgz RUN echo "export PATH=\${PATH}:/opt/kafka_${KAFKA_VERSION}/bin" >> /home/${user}/.bashrc RUN rm kafka.tgz