Skip to content

Commit

Permalink
Fix environment variable intergration in Dockerfile for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwitte committed Jul 16, 2024
1 parent cab0f44 commit ea5378c
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 @@ -17,9 +17,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# Install Python Version
RUN wget --no-check-certificate https://www.python.org/ftp/python/$TUSTU_PYTHON_VERSION/Python-$TUSTU_PYTHON_VERSION.tgz \
&& tar -xf Python-$TUSTU_PYTHON_VERSION.tgz \
&& cd Python-$TUSTU_PYTHON_VERSION\
RUN wget --no-check-certificate https://www.python.org/ftp/python/${{ env.TUSTU_PYTHON_VERSION }}/Python-${{ env.TUSTU_PYTHON_VERSION }}.tgz \
&& tar -xf Python-{{ env.TUSTU_PYTHON_VERSION }}.tgz \
&& cd Python-{{ env.TUSTU_PYTHON_VERSION }}\
&& ./configure --enable-optimizations \
&& make -j$(nproc) \
&& make altinstall \
Expand Down

0 comments on commit ea5378c

Please sign in to comment.