humane_ai / dockerfile
gcbar's picture
dockerfile_new
a728003 verified
# Use the official Jupyter Docker image
FROM jupyter/base-notebook
# Set environment variables
ENV JUPYTER_ENABLE_LAB=yes
# Expose port 8888 for Jupyter
EXPOSE 8888
# Start Jupyter Lab
CMD ["start-notebook.sh", "--NotebookApp.token=''", "--ip='0.0.0.0'", "--allow-root"]