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 444 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. # Dockerfile
  2. FROM python:3.10
  3. RUN apt-get update && apt-get -y install
  4. # Upgrade pip and setuptools
  5. RUN pip install --upgrade pip && \
  6. pip install -U setuptools
  7. WORKDIR /app
  8. COPY requirements.txt .
  9. COPY src src
  10. COPY notebooks notebooks
  11. RUN pip install -r requirements.txt
  12. EXPOSE 8888
  13. ENTRYPOINT ["jupyter", "notebook", "--port=8888", "--no-browser", "--ip=0.0.0.0", "--allow-root","--NotebookApp.token=''","--NotebookApp.password=''"]
Tip!

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

Comments

Loading...