-
Notifications
You must be signed in to change notification settings - Fork 123
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 #652 from ATM-Jahid/fix-whl
- Loading branch information
Showing
1 changed file
with
5 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,5 +1,5 @@ | ||
# Base Python (debian) image | ||
FROM python:3.11 | ||
FROM python:3.12 | ||
LABEL maintainer="Gabor Csanyi <[email protected]>" | ||
|
||
# make /bin/sh symlink to bash instead of dash: | ||
|
@@ -93,16 +93,14 @@ RUN pip install --upgrade pip \ | |
spglib \ | ||
rdkit-pypi \ | ||
nglview \ | ||
RISE \ | ||
pandas \ | ||
phonopy \ | ||
torch \ | ||
torchani \ | ||
gpaw \ | ||
&& jupyter nbextension enable --py --sys-prefix widgetsnbextension \ | ||
&& jupyter nbextension enable --py --sys-prefix nglview \ | ||
&& jupyter-nbextension install rise --py --sys-prefix \ | ||
&& jupyter-nbextension enable rise --py --sys-prefix | ||
ipywidgets \ | ||
jupyterlab_widgets \ | ||
jupyterlab_rise | ||
|
||
# get latest version of ASE | ||
RUN pip install git+https://gitlab.com/ase/ase | ||
|
@@ -312,5 +310,5 @@ ENV SHELL /bin/bash | |
# Launch in the home directory of the user | ||
ADD files/demo.ipynb . | ||
|
||
CMD bash -c exit && jupyter notebook --ip=$(hostname -i) --port=8899 --allow-root | ||
CMD bash -c exit && jupyter lab --ip=$(hostname -i) --port=8899 --allow-root | ||
EXPOSE 8899 |