diff options
author | terminaldweller <thabogre@gmail.com> | 2022-06-23 02:53:15 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-06-23 02:53:15 +0000 |
commit | c8184aa8fbb0fdbc8a00a75f2ff8f6271800ed9c (patch) | |
tree | fff40f671d24f39d99fbc9ecc2806d5dfac91d17 /Dockerfile | |
parent | update (diff) | |
download | jupyter-notebook-docker-compose-c8184aa8fbb0fdbc8a00a75f2ff8f6271800ed9c.tar.gz jupyter-notebook-docker-compose-c8184aa8fbb0fdbc8a00a75f2ff8f6271800ed9c.zip |
added proxy
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -5,4 +5,9 @@ RUN openssl req -nodes -new -x509 -subj="/C=US/ST=Denial/L=springfield/O=Dis/CN= FROM python:3.10.5-slim-buster RUN pip install jupyterlab scipy numpy poetry numba torch tensorflow transformers huggingface-hub +RUN apt-get update && apt-get install -y curl wget unzip +RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - +RUN apt-get -y install nodejs +RUN pip install ipywidgets pandas pysocks +# RUN jupyter labextension install jupyterlab_vim COPY --from=certbuilder /certs /certs |