# 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"] |