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 210 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
  1. FROM python:3.10-slim
  2. WORKDIR /app
  3. COPY app/requirements.txt .
  4. RUN pip install --no-cache-dir -r requirements.txt
  5. COPY app/ .
  6. EXPOSE 9696
  7. CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "9696"]
Tip!

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

Comments

Loading...