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 232 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.8
  2. ENV GIT_SSL_NO_VERIFY=true
  3. WORKDIR /app
  4. COPY . .
  5. RUN python3 -m pip install --upgrade pip \
  6. && pip3 install --no-cache-dir -r requirements.txt
  7. RUN python3 code/get_data.py
  8. CMD ["dvc", "repro", "--force"]
Tip!

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

Comments

Loading...