Dockerfile 466 B

12345678910111213141516
  1. FROM tensorflow/tensorflow:latest-gpu
  2. RUN apt-get update -y && apt-get install zip wget -y
  3. RUN pip install --upgrade pip
  4. RUN pip install jupyter pandas sklearn matplotlib ipympl wandb tqdm \
  5. RISE jupyter_contrib_nbextensions tables tensorflow_probability
  6. RUN jupyter contrib nbextension install --system
  7. COPY ./notebooks /app/notebooks
  8. WORKDIR /app/notebooks
  9. CMD ["jupyter", "notebook", "--port=8888", "--no-browser", \
  10. "--ip=0.0.0.0", "--allow-root"]