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

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
  1. FROM python:3.8-slim
  2. WORKDIR /app
  3. COPY . .
  4. RUN pip install -r requirements.txt
  5. CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
  6. EXPOSE 8501
Tip!

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

Comments

Loading...