Skip to content

Commit

Permalink
#32: fix unescaped dollar char in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Jul 18, 2024
1 parent cf82370 commit d19efb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/docker/ubuntu22.04-gcc11-vtk9.2.2.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ ARG PYTHON=3.8

# Base image & requirements
FROM ${BASE} AS base
ARG CC CXX VTK_TAG VTK_DIR PYTHON

ARG CC CXX VTK_TAG VTK_DIR PYTHON
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update -y -q && \
Expand Down Expand Up @@ -91,7 +91,7 @@ RUN cmake \
-DVTK_Group_Rendering:BOOL=OFF \
-DBUILD_SHARED_LIBS:BOOL=ON \
-S /opt/src/vtk -B ${VTK_DIR}
RUN cmake --build ${VTK_DIR} -j$(nproc)
RUN cmake --build ${VTK_DIR} -j\$(nproc)

RUN echo "Base creation success"

Expand Down

0 comments on commit d19efb0

Please sign in to comment.