Skip to content

Commit

Permalink
updated npm dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmartins committed Mar 29, 2024
1 parent 25c1a81 commit c5a80b3
Show file tree
Hide file tree
Showing 20 changed files with 23,607 additions and 3,474 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,6 @@ gh-pages/

**/docs/*

**/labextension/
**/labextension/

**/.nx/*
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM jupyter/minimal-notebook:latest

MAINTAINER Manuel Martins <manuelmachadomartins@gmail.com>
LABEL Author="Manuel Martins <manuelmachadomartins@gmail.com>"

USER root

Expand Down
33 changes: 33 additions & 0 deletions dev-Dockerfile
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/*
3 changes: 1 addition & 2 deletions js/lerna.json
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"
}
Loading

0 comments on commit c5a80b3

Please sign in to comment.