-
Notifications
You must be signed in to change notification settings - Fork 30
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
Showing
2 changed files
with
6 additions
and
8 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,15 +1,13 @@ | ||
# currently we haven't published an official hydromt image yet, so for now | ||
# I import from an export I've put on my own account. this should be moved | ||
# to the official image as soon as it's published. | ||
FROM deltares/hydromt:slim as binder | ||
# Binder hard requires all of these steps when they build the imae | ||
FROM deltares/hydromt:slim AS binder | ||
# Binder hard requires all of these steps when they build the image | ||
# therefore these steps aren't taken sooner | ||
|
||
ENV HOME=/home/mambauser \ | ||
ENV HOME=/home/deltares \ | ||
NUMBA_CACHE_DIR=${HOME}/.cahce/numba\ | ||
USE_PYGEOS=0 \ | ||
PYTHONDONTWRITEBYTECODE=1 \ | ||
PYDEVD_DISABLE_FILE_VALIDATION=1 | ||
RUN pixi shell | ||
WORKDIR ${HOME} | ||
ENTRYPOINT ["micromamba","run","-n","hydromt"] | ||
ENTRYPOINT [] | ||
CMD ["jupyter","notebook","--port=8888","--ip=0.0.0.0"] |
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