-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #340 from DigitalSlideArchive/docker-update
Update the docker file based on a docker build recommendation
- Loading branch information
Showing
2 changed files
with
5 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
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,7 +1,7 @@ | ||
FROM girder/tox-and-node | ||
LABEL maintainer="Kitware, Inc. <[email protected]>" | ||
|
||
ENV LANG en_US.UTF-8 | ||
ENV LANG=en_US.UTF-8 | ||
|
||
# Install some additional packages | ||
RUN apt-get update && \ | ||
|
@@ -85,7 +85,7 @@ RUN cd /opt && \ | |
cd /opt/large_image && \ | ||
pip install --no-cache-dir --find-links https://girder.github.io/large_image_wheels -e .[memcached] -rrequirements-dev.txt && \ | ||
# Reduice docker size by de-duplicating some libraries that get installed \ | ||
rdfind -minsize 1048576 -makehardlinks true -makeresultsfile false /opt/venv | ||
rdfind -minsize 32768 -makehardlinks true -makeresultsfile false /opt/venv | ||
|
||
RUN cd /opt && \ | ||
git clone https://github.com/DigitalSlideArchive/HistomicsUI && \ | ||
|