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 441 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
15
16
17
18
19
20
  1. FROM dockerqa/unzip:latest
  2. COPY resources/model.zip /resources/model.zip
  3. RUN unzip /resources/model.zip -d /resources \
  4. && rm -f /resources/model.zip
  5. FROM continuumio/miniconda3 AS runtime
  6. WORKDIR /app
  7. COPY --from=0 /resources /app/resources
  8. RUN conda env create -f /app/resources/conda.yaml --name wrapper_launcher
  9. COPY . .
  10. SHELL ["conda", "run", "-n", "wrapper_launcher", "/bin/bash", "-c"]
  11. RUN pip install -r requirements.txt
Tip!

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

Comments

Loading...