We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ed03e3 commit 12f2d9bCopy full SHA for 12f2d9b
1 file changed
Dockerfile
@@ -13,7 +13,10 @@ RUN chmod 777 -R /tmp && apt-get update && DEBIAN_FRONTEND=noninteractive apt-ge
13
curl \
14
g++ \
15
make \
16
- git && \
+ git \
17
+ cmake \
18
+ ninja-build \
19
+ build-essential && \
20
rm -rf /var/lib/apt/lists/*
21
22
RUN case ${TARGETPLATFORM} in \
@@ -34,7 +37,7 @@ RUN case ${TARGETPLATFORM} in \
34
37
35
38
WORKDIR /root
36
39
-RUN pip install torch==2.7.1
40
+RUN pip install torch==2.7.1 numpy
41
42
COPY . .
43
0 commit comments