We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff7201 commit 5d16cc2Copy full SHA for 5d16cc2
.github/workflows/test.yml
@@ -217,7 +217,6 @@ jobs:
217
testdocker:
218
name: Docker Test
219
runs-on: ubuntu-latest
220
- if: ${{ false }}
221
222
steps:
223
- name: Checkout Code
test/Dockerfile
@@ -1,4 +1,12 @@
1
FROM ubuntu:20.04
2
-RUN apt-get update
3
-RUN apt-get install -y python3-pip git
4
-RUN pip3 install git+https://github.com/geohot/tinygrad.git
+
+# Install python3.8, and pip3
+RUN apt-get update && apt-get install -y --no-install-recommends \
5
+ python3.8 \
6
+ python3-pip \
7
+ && rm -rf /var/lib/apt/lists/*
8
9
+# Install python dependencies
10
+COPY . ./tinygrad
11
+WORKDIR tinygrad
12
+RUN pip install -e .
0 commit comments