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

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
  1. FROM python:3.11.7-slim-bookworm
  2. WORKDIR ./
  3. COPY pyproject.toml poetry.lock ./
  4. RUN pip install poetry
  5. RUN poetry install
  6. COPY . .
  7. EXPOSE 5000
  8. CMD ["poetry", "run", "python", "src/serve/app.py"]
Tip!

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

Comments

Loading...