1
0
forked from wrenn/wrenn

Modified expandEnv to use regex.

Updated recipefile with test script to check code execution with state
management
This commit is contained in:
Tasnim Kabir Sadik
2026-04-07 22:56:56 +06:00
parent bf05677bef
commit 9852f96127
3 changed files with 188 additions and 53 deletions

View File

@ -2,6 +2,6 @@ RUN apt-get install -y --no-install-recommends python3 python3-pip python3-venv
RUN python3 -m venv /opt/venv
ENV PATH=/opt/venv/bin:$PATH
RUN --timeout=5m pip install --no-cache-dir notebook
RUN --timeout=5m pip install --no-cache-dir jupyter-server ipykernel
START jupyter notebook --no-browser --ip=0.0.0.0 --port=8888 --ServerApp.token='' --ServerApp.allow_origin='*' --allow-root
START jupyter server --ServerApp.ip=0.0.0.0 --ServerApp.port=8888 --ServerApp.token='' --ServerApp.allow_origin='*' --ServerApp.disable_check_xsrf=True --no-browser --allow-root