12 wiersze
259 B
Docker
12 wiersze
259 B
Docker
|
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"]
|