-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ LABEL maintainer.email="[email protected]" | |
# 'RUN' executes code during the build | ||
# Install Python and pip | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
/usr/bin/python3 python3 python3-pip && \ | ||
python3 python3-pip && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# Install Python dependencies | ||
|
@@ -62,7 +62,7 @@ FROM app as test | |
# Demonstrate that the program is successfully installed | ||
|
||
RUN echo && echo "Show heatcluster help file: " && echo && \ | ||
heatcluster -h && echo | ||
python3 HeatCluster.py -h && echo | ||
|
||
RUN echo && echo "Run a test matrix thru the program" && \ | ||
python3 HeatCluster.py -i snp-dists.txt && echo |