Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dfdx committed Oct 9, 2024
1 parent a84c09a commit 1968955
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 1968955

Please sign in to comment.