-
Notifications
You must be signed in to change notification settings - Fork 13
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
1 parent
3489d65
commit 6cfabc2
Showing
3 changed files
with
28 additions
and
13 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
# | ||
# Timestamp: 2020/12/02 18:33:44 UTC | ||
|
||
FROM macatools/macapype_env:v0.2 | ||
FROM macatools/macapype_env:v0.2.2 | ||
|
||
USER root | ||
|
||
|
@@ -20,13 +20,7 @@ MAINTAINER David Meunier "[email protected]" | |
|
||
RUN apt-get update && apt-get install -y git libpng-dev libfreetype6-dev libxft-dev libblas-dev liblapack-dev libatlas-base-dev gfortran libxml2-dev libxslt1-dev wget graphviz | ||
|
||
RUN apt-get install -y python3-pil python3-pil.imagetk | ||
|
||
RUN python -m pip install -U pillow | ||
#RUN pip3 install pillow | ||
|
||
#RUN apt-get install libx11-6 libxext6 libxt6 # matlab | ||
RUN pip install xvfbwrapper \ | ||
RUN python -m pip install xvfbwrapper \ | ||
psutil \ | ||
numpy \ | ||
scipy \ | ||
|
@@ -55,7 +49,11 @@ RUN pip install xvfbwrapper \ | |
|
||
############################################# install macapype | ||
|
||
RUN pip install --no-deps --index-url https://test.pypi.org/simple/ --pre macapype && python -c "import macapype; print(macapype.__version__)" | ||
#RUN pip3 install --no-deps --index-url https://test.pypi.org/simple/ --pre macapype | ||
#RUN python3 -c "import macapype; print(macapype.__version__)" | ||
|
||
RUN python -m pip install --no-deps --index-url https://test.pypi.org/simple/ --pre macapype | ||
RUN python -c "import macapype; print(macapype.__version__)" | ||
|
||
################################################## Finishing | ||
RUN apt-get clean \ | ||
|
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 +1 @@ | ||
__version__ = '0.3.5.2-rc5' | ||
__version__ = '0.3.5.2-rc6' |