Skip to content

Commit

Permalink
version format
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Dec 6, 2023
1 parent ac57207 commit 894c587
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ RUN apt-get update -qq && apt-get install -q -y --no-install-recommends \
RUN pip install cmake

ARG CMAKE_CXX_STANDARD=23
ARG GEANT4_VERSION=v11.1.3
ARG XERCES_VERSION=v3.2.4
ARG GEANT4_VERSION=11.1.3
ARG XERCES_VERSION=3.2.4

RUN git clone https://github.com/apache/xerces-c.git /tmp/xerces \
&& git -C /tmp/xerces checkout tags/v${XERCES_VERSION} \
Expand All @@ -26,7 +26,7 @@ RUN git clone https://github.com/apache/xerces-c.git /tmp/xerces \
&& cmake --build /tmp/xerces/build -j$(nproc) --target install \
&& rm -rf /tmp/xerces \

RUN git clone https://github.com/Geant4/geant4.git /tmp/geant4 --branch=${GEANT4_VERSION} --depth=1 \
RUN git clone https://github.com/Geant4/geant4.git /tmp/geant4 --branch=v${GEANT4_VERSION} --depth=1 \
&& cmake -G Ninja -B /tmp/geant4/build -S /tmp/geant4 \
-DCMAKE_INSTALL_PREFIX=/opt/geant4 \
-DXERCESC_ROOT_DIR=/opt/xerces \
Expand Down

0 comments on commit 894c587

Please sign in to comment.