We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 046dcbd + cd0e86b commit 66674f5Copy full SHA for 66674f5
test/images/node-perf/tf-wide-deep/BASEIMAGE
@@ -1 +1,2 @@
1
amd64=python:3.6-slim-stretch
2
+arm64=arm64v8/python:3.6-slim-stretch
test/images/node-perf/tf-wide-deep/Dockerfile
@@ -14,8 +14,18 @@
14
15
FROM BASEIMAGE
16
17
+CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/
18
+
19
RUN apt-get update && apt-get install -y wget time
-RUN pip install tensorflow
20
21
+RUN case $(uname -m) in \
22
+ aarch64) \
23
+ pip install tensorflow-aarch64; \
24
+ ;; \
25
+ *) \
26
+ pip install tensorflow; \
27
28
+ esac
29
30
RUN wget https://github.com/tensorflow/models/archive/v1.9.0.tar.gz \
31
&& tar xzf v1.9.0.tar.gz \
0 commit comments