Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung authored Jan 9, 2024
1 parent 602900b commit bf05215
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions heatcluster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Install Python packages
RUN pip3 install --no-cache argparse pandas numpy pathlib seaborn matplotlib scipy

RUN wget -q https://github.com/DrB-S/heatcluster/archive/refs/tags/v${HEATCLUSTER_VER}.tar.gz && \
tar -vxf v${HEATCLUSTER_VER}.tar.gz && \
rm v${HEATCLUSTER_VER}.tar.gz && \
RUN wget -q https://github.com/DrB-S/heatcluster/archive/refs/tags/${HEATCLUSTER_VER}.tar.gz && \
tar -vxf ${HEATCLUSTER_VER}.tar.gz && \
rm ${HEATCLUSTER_VER}.tar.gz && \
mkdir /data

ENV PATH=/heatcluster-${HEATCLUSTER_VER}:$PATH
Expand Down

0 comments on commit bf05215

Please sign in to comment.