Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Dockerfile 190 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
  1. FROM continuumio/anaconda3
  2. WORKDIR /workspace
  3. COPY ./requirements.txt ./workspace/
  4. RUN pip install -r requirements.txt
  5. CMD jupyter-lab --no-browser \
  6. --port=8888 --ip=0.0.0.0 --allow-root
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...