Skip to content

Commit 32c3aef

Browse files
authored
Update Dockerfile
1 parent d598971 commit 32c3aef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ WORKDIR /root/local/bin
2020
RUN mkdir -p /opt/cmake && wget https://github.com/Kitware/CMake/releases/download/v3.24.3/cmake-3.24.3-linux-x86_64.sh && sh cmake-3.24.3-linux-x86_64.sh --prefix=/opt/cmake --skip-license
2121
ENV PATH=/opt/cmake/bin/:$PATH
2222
# Installing Maven and Julia
23-
RUN curl "https://miroir.univ-lorraine.fr/apache/maven/maven-3/3.9.3/binaries/apache-maven-3.9.3-bin.tar.gz" -o maven.tar.gz
23+
RUN curl "https://miroir.univ-lorraine.fr/apache/maven/maven-3/3.9.4/binaries/apache-maven-3.9.4-bin.tar.gz" -o maven.tar.gz
2424
RUN mkdir -p maven
2525
RUN tar xzf maven.tar.gz -C ./maven
26-
RUN export PATH=$PATH:/root/local/bin/maven/apache-maven-3.9.3/bin
26+
RUN export PATH=$PATH:/root/local/bin/maven/apache-maven-3.9.4/bin
2727
RUN wget "https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.3-linux-x86_64.tar.gz"
2828
RUN mkdir -p julia
2929
RUN tar xf julia-1.5.3-linux-x86_64.tar.gz -C ./julia
@@ -54,7 +54,7 @@ RUN dotnet build csharp_package/brainflow/brainflow.sln
5454

5555
# Java Binding
5656
WORKDIR /root/brainflow/java_package/brainflow
57-
RUN /root/local/bin/maven/apache-maven-3.9.3/bin/mvn package
57+
RUN /root/local/bin/maven/apache-maven-3.9.4/bin/mvn package
5858

5959
# Julia Bindings
6060
WORKDIR /root/brainflow/julia_package/brainflow

0 commit comments

Comments
 (0)