-
Notifications
You must be signed in to change notification settings - Fork 8
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
20 changed files
with
23,607 additions
and
3,474 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 |
---|---|---|
|
@@ -91,4 +91,6 @@ gh-pages/ | |
|
||
**/docs/* | ||
|
||
**/labextension/ | ||
**/labextension/ | ||
|
||
**/.nx/* |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
FROM jupyter/minimal-notebook:latest | ||
|
||
LABEL Author="Manuel Martins <manuelmachadomartins@gmail.com>" | ||
|
||
USER root | ||
|
||
ARG DEBIAN_FRONTEND="noninteractive" | ||
ARG WGET="wget -N --no-check-certificate --tries=5 --waitretry=5 --retry-connrefused" | ||
|
||
RUN apt update && apt -qq install -y git curl wget python3-pip inkscape pandoc texlive-xetex libgmp-dev libreadline-dev graphviz \ | ||
zlib1g-dev libzmq3-dev gcc g++ make autoconf && \ | ||
git clone --depth=2 -b master https://github.com/gap-system/gap.git /opt/master && cd /opt/master && \ | ||
./autogen.sh && ./configure && make -j4 V=1 && \ | ||
make bootstrap-pkg-full DOWNLOAD="$WGET" WGET="$WGET" && \ | ||
cd /opt/master/pkg && rm -rf /opt/master/pkg/francy && \ | ||
git clone https://github.com/gap-packages/FrancyMonoids && \ | ||
git clone https://github.com/gap-packages/francy && \ | ||
git clone https://github.com/mcmartins/subgroup-lattice && \ | ||
git clone https://github.com/gap-packages/OrbitalGraphs && \ | ||
for pkg in `ls`; do ../bin/BuildPackages.sh --strict $pkg*; done && \ | ||
rm -rf /opt/master/packages.tar.gz && chown -R jovyan: /opt/master/ && \ | ||
cd /opt/master/pkg/jupyterkernel && pip install . && \ | ||
ln -s /opt/master/pkg/francy/notebooks /home/jovyan/notebooks && \ | ||
ln -s /opt/master/gap /usr/local/sbin/gap | ||
|
||
USER jovyan | ||
|
||
# jupyter lab extension installation | ||
COPY . /home/jovyan/francy/ | ||
|
||
RUN pip install --no-cache-dir jupyterlab && \ | ||
cd /home/jovyan/francy/js/packages/francy-extension-jupyterlab/ && \ | ||
pip install . && cd - && rm -rf /home/jovyan/.jupyter/* |
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,6 +1,5 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"version": "2.0.3", | ||
"npmClient": "yarn", | ||
"useWorkspaces": true | ||
"npmClient": "yarn" | ||
} |
Oops, something went wrong.