This commit is contained in:
Cryptoval2
2024-06-01 16:50:15 -04:00
parent 1553a2132a
commit 53dd9e870d
3 changed files with 14 additions and 11 deletions
+11 -2
View File
@@ -1,11 +1,20 @@
FROM pytorch/pytorch:latest
# Install Jupyter Notebook
# Install JupyterLab
RUN pip install jupyterlab
# Install additional packages
RUN pip install tensorflow
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=''"]