Skip to content

Commit

Permalink
Merge pull request #8 from erinyoung/main
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
DrB-S authored Nov 8, 2023
2 parents a971184 + 4badb5f commit 8001a6e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ LABEL version="${HEATCLUSTER_VER}"
LABEL website="https://github.com/DrB-S/HeatCluster"
LABEL license="https://github.com/DrB-S/HeatCluster/blob/master/LICENSE"
LABEL name="heatcluster/${HEATCLUSTER_VER}"

# Install Python and pip
RUN apt-get update && apt-get install -y python3 python3-pip && \
apt-get clean && rm -rf /var/lib/apt/lists/*

# Install Python packages
RUN pip3 install argparse
RUN pip3 install pandas
RUN pip3 install numpy
RUN pip3 install pathlib
RUN pip3 install seaborn
RUN pip3 install matplotlib
RUN pip3 install scipy

WORKDIR /app
RUN pip3 install argparse pandas numpy pathlib seaborn matplotlib scipy

WORKDIR /HeatCluster
COPY . .
#CMD ["python3", "HeatCluster.py"]

ENV PATH=/HeatCluster:$PATH

CMD HeatCluster.py --help

WORKDIR /data

0 comments on commit 8001a6e

Please sign in to comment.