Dockerfile 272 B

123456789101112
  1. FROM ubuntu:20.04
  2. # Install python3.8, and pip3
  3. RUN apt-get update && apt-get install -y --no-install-recommends \
  4. python3.8 \
  5. python3-pip \
  6. && rm -rf /var/lib/apt/lists/*
  7. # Install python dependencies
  8. COPY . ./tinygrad
  9. WORKDIR tinygrad
  10. RUN pip install -e .