progress: common data directory

This commit is contained in:
2024-06-04 00:57:49 +00:00
parent 1013e80286
commit 3a004e712a
6 changed files with 37 additions and 23 deletions
+3 -2
View File
@@ -13,8 +13,9 @@ RUN useradd -m -s /bin/bash oleg
RUN mkdir -p /workspace/tf_cache
# Install packages
RUN pip install tensorflow-gpu
RUN pip install jupyterlab
RUN pip install pandas
RUN pip install numpy
RUN pip install plotly
# Install additional applications
@@ -28,4 +29,4 @@ WORKDIR /workspace
EXPOSE ${JUPYTER_PORT}
# Command to run JupyterLab
CMD ["jupyter-lab", "--ip=0.0.0.0", "--port=9999", "--no-browser", "--allow-root", "--NotebookApp.token=''"]
CMD ["sh", "-c", "jupyter lab --ip=0.0.0.0 --port=9999 --allow-root --no-browser --NotebookApp.token=''"]