-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dockerfile to improve formatting
- Loading branch information
1 parent
f373ab0
commit 5a2e1b6
Showing
1 changed file
with
6 additions
and
7 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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
FROM ubuntu | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y git python3-pip python3.6 | ||
RUN apt-get install -y openslide-tools | ||
|
||
RUN cd /opt | ||
RUN git clone https://github.com/choosehappy/HistoQC.git | ||
RUN pip3 install -r /opt/HistoQC/requirements.txt | ||
RUN apt-get update && \ | ||
apt-get install -y git python3-pip python3.6 && \ | ||
apt-get install -y openslide-tools | ||
|
||
RUN cd /opt \ | ||
git clone https://github.com/choosehappy/HistoQC.git \ | ||
pip3 install -r /opt/HistoQC/requirements.txt |