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.branch 624 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
  1. ARG DOCKER_IMAGE_TAG=11.3.1-devel-ubuntu20.04
  2. FROM nvidia/cuda:${DOCKER_IMAGE_TAG}
  3. LABEL maintainer "DECI.AI <services@deci.ai>"
  4. ARG DEBIAN_FRONTEND=noninteractive
  5. RUN mkdir /SG
  6. WORKDIR /SG
  7. RUN apt-get update && apt-get install -y python3-pip python-is-python3 pip libgl1 libglib2.0-0 git python3-distutils python3-typing-extensions \
  8. && rm -rf /var/lib/apt/lists/*
  9. COPY . .
  10. RUN pip install . --no-cache-dir && pip install torch==1.11.0+cu113 torchvision==0.12.0+cu113 --extra-index-url https://download.pytorch.org/whl/cu113 --no-cache-dir
  11. RUN pip uninstall -y typing_extensions && pip install wandb --no-cache-dir
Tip!

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

Comments

Loading...