-
Notifications
You must be signed in to change notification settings - Fork 85
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 #1 from guzman-raphael/switch-to-djtest
Fix merge conflicts + update images
- Loading branch information
Showing
163 changed files
with
2,217 additions
and
3,091 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
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 |
---|---|---|
|
@@ -24,5 +24,6 @@ notebook | |
.vscode | ||
__main__.py | ||
jupyter_custom.js | ||
apk_requirements.txt | ||
.eggs | ||
*.code-workspace | ||
docs/site |
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,5 +1,9 @@ | ||
FROM datajoint/djbase | ||
|
||
COPY --chown=anaconda:anaconda . /tmp/src | ||
RUN pip install --no-cache-dir /tmp/src && \ | ||
rm -rf /tmp/src | ||
ARG IMAGE=djbase | ||
ARG PY_VER=3.9 | ||
ARG DISTRO=debian | ||
FROM datajoint/${IMAGE}:py${PY_VER}-${DISTRO} | ||
COPY --chown=anaconda:anaconda ./setup.py ./datajoint.pub ./requirements.txt /main/ | ||
COPY --chown=anaconda:anaconda ./datajoint /main/datajoint | ||
RUN \ | ||
pip install --no-cache-dir /main && \ | ||
rm -r /main/* |
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
Oops, something went wrong.