jupyter_gpu/Dockerfile
Cryptoval2 53dd9e870d .
2024-06-01 16:50:15 -04:00

21 lines
423 B
Docker

FROM pytorch/pytorch:latest
# Install JupyterLab
RUN pip install jupyterlab
# Install additional packages
RUN pip install plotly
# Set environment variables, etc.
#ENV MY_ENV_VAR=myvalue
# Set the working directory
WORKDIR /workspace
# Expose the port for JupyterLab
EXPOSE 8888
# Command to run JupyterLab
CMD ["jupyter-lab", "--ip=0.0.0.0", "--port=8888", "--no-browser", "--allow-root", "--NotebookApp.token=''"]