-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to PaintsChainer commit 1c14f9e
- Loading branch information
Showing
4 changed files
with
31 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,11 +1,13 @@ | ||
FROM nvidia/cuda:8.0-cudnn5-devel-ubuntu16.04 | ||
FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu16.04 | ||
|
||
MAINTAINER Liam Jones <[email protected]> | ||
|
||
# Keep Anaconda download separate so this big layer can usually remain cached | ||
ENV ANACONDA_VERSION=4.2.0 | ||
RUN apt-get update && \ | ||
apt-get install --assume-yes ca-certificates && \ | ||
apt-get install --assume-yes \ | ||
ca-certificates \ | ||
curl && \ | ||
curl --location "https://repo.continuum.io/archive/Anaconda3-${ANACONDA_VERSION}-Linux-x86_64.sh" > /anaconda.sh && \ | ||
/bin/bash anaconda.sh -b -p /opt/conda && \ | ||
rm anaconda.sh | ||
|
@@ -42,10 +44,12 @@ RUN mkdir --parents /opt/conda/var/lib/dbus/ & \ | |
chmod +x /usr/local/bin/tini && \ | ||
conda install --yes --channel menpo opencv3 && \ | ||
conda clean --all && \ | ||
pip --no-cache-dir install chainer | ||
pip --no-cache-dir install \ | ||
cupy \ | ||
chainer | ||
|
||
ENV PAINTSCHAINER_REPO=https://github.com/pfnet/PaintsChainer.git \ | ||
PAINTSCHAINER_COMMIT=ecd5087 | ||
PAINTSCHAINER_COMMIT=1c14f9e | ||
|
||
RUN git clone $PAINTSCHAINER_REPO && \ | ||
mkdir /PaintsChainer/cgi-bin/paint_x2_unet/models/ && \ | ||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module type="WEB_MODULE" version="4"> | ||
<component name="NewModuleRootManager" inherit-compiler-output="true"> | ||
<exclude-output /> | ||
<content url="file://$MODULE_DIR$" /> | ||
<orderEntry type="inheritedJdk" /> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
<orderEntry type="module-library"> | ||
<library name="PHP Runtime" type="php"> | ||
<CLASSES> | ||
<root url="jar://$APPLICATION_PLUGINS_DIR$/php/lib/php.jar!/stubs/standard" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$APPLICATION_PLUGINS_DIR$/php/lib/php.jar!/stubs/standard" /> | ||
</SOURCES> | ||
</library> | ||
</orderEntry> | ||
</component> | ||
</module> |
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