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 219 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
  1. FROM python:3.9.19-slim
  2. WORKDIR /app
  3. COPY . /app
  4. RUN pip install --upgrade pip
  5. RUN pip install poetry
  6. RUN poetry install
  7. RUN pip install dvc[s3]
  8. EXPOSE 5001
  9. CMD ["poetry", "run", "python", "-m", "src.serve.server"]
Tip!

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

Comments

Loading...