-
Notifications
You must be signed in to change notification settings - Fork 45
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 #252 from kabilar/master
Fix Dockerfiles and add GitHub Actions job
- Loading branch information
Showing
4 changed files
with
22 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
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,4 +1,4 @@ | ||
FROM tensorflow/tensorflow:2.10.0-jupyter | ||
FROM tensorflow/tensorflow:2.13.0-jupyter | ||
RUN curl -sSL http://neuro.debian.net/lists/focal.us-nh.full | tee /etc/apt/sources.list.d/neurodebian.sources.list \ | ||
&& export GNUPGHOME="$(mktemp -d)" \ | ||
&& echo "disable-ipv6" >> ${GNUPGHOME}/dirmngr.conf \ | ||
|
@@ -15,7 +15,7 @@ RUN git config --global user.email "[email protected]" \ | |
&& git config --global user.name "Neuronets maintainers" | ||
RUN datalad clone https://github.com/neuronets/trained-models /models \ | ||
&& cd /models && git-annex enableremote osf-storage \ | ||
&& datalad get -r . | ||
&& datalad get -s osf-storage . | ||
ENV LC_ALL=C.UTF-8 \ | ||
LANG=C.UTF-8 | ||
WORKDIR "/work" | ||
|
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,4 +1,4 @@ | ||
FROM tensorflow/tensorflow:2.10.0-gpu-jupyter | ||
FROM tensorflow/tensorflow:2.13.0-gpu-jupyter | ||
RUN curl -sSL http://neuro.debian.net/lists/focal.us-nh.full | tee /etc/apt/sources.list.d/neurodebian.sources.list \ | ||
&& export GNUPGHOME="$(mktemp -d)" \ | ||
&& echo "disable-ipv6" >> ${GNUPGHOME}/dirmngr.conf \ | ||
|
@@ -8,14 +8,13 @@ RUN curl -sSL http://neuro.debian.net/lists/focal.us-nh.full | tee /etc/apt/sour | |
&& apt-get install -y git-annex-standalone git \ | ||
&& rm -rf /tmp/* | ||
COPY [".", "/opt/nobrainer"] | ||
RUN cd /opt/nobrainer \ | ||
&& sed -i 's/tensorflow >=/tensorflow-gpu >=/g' setup.cfg | ||
RUN cd /opt/nobrainer | ||
RUN python3 -m pip install --no-cache-dir /opt/nobrainer datalad datalad-osf | ||
RUN git config --global user.email "[email protected]" \ | ||
&& git config --global user.name "Neuronets maintainers" | ||
RUN datalad clone https://github.com/neuronets/trained-models /models \ | ||
&& cd /models && git-annex enableremote osf-storage \ | ||
&& datalad get -r . | ||
&& datalad get -s osf-storage . | ||
ENV LC_ALL=C.UTF-8 \ | ||
LANG=C.UTF-8 | ||
WORKDIR "/work" | ||
|
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