docker config
rodzic
c7341ea6a9
commit
7991cad9af
|
@ -0,0 +1,11 @@
|
|||
FROM jupyter/base-notebook
|
||||
|
||||
COPY requirements.txt .
|
||||
|
||||
RUN python3 -m pip install --user --no-cache-dir -r requirements.txt
|
||||
COPY notebooks .
|
||||
COPY run_voila .
|
||||
|
||||
EXPOSE 8866
|
||||
#CMD ["jupyter-lab","--ip=0.0.0.0","--no-browser","--allow-root"]
|
||||
CMD ["./run_voila"]
|
|
@ -1,6 +1,5 @@
|
|||
jupyterlab
|
||||
pythreejs
|
||||
pandas
|
||||
voila
|
||||
ipywidgets
|
||||
termcolor
|
||||
termcolor
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
python3 -m voila \
|
||||
--Voila.ip='0.0.0.0' \
|
||||
--enable_nbextensions=True \
|
||||
--autoreload=True \
|
||||
--no-browser \
|
Ładowanie…
Reference in New Issue