Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
66674f54
Unverified
Commit
66674f54
authored
Mar 19, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
Mar 19, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #74408 from lubinsz/pr_tf
node-perf/tf-wide-deep: add support for Arm64
parents
046dcbd1
cd0e86b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
BASEIMAGE
test/images/node-perf/tf-wide-deep/BASEIMAGE
+1
-0
Dockerfile
test/images/node-perf/tf-wide-deep/Dockerfile
+11
-1
No files found.
test/images/node-perf/tf-wide-deep/BASEIMAGE
View file @
66674f54
amd64=python:3.6-slim-stretch
amd64=python:3.6-slim-stretch
arm64=arm64v8/python:3.6-slim-stretch
test/images/node-perf/tf-wide-deep/Dockerfile
View file @
66674f54
...
@@ -14,8 +14,18 @@
...
@@ -14,8 +14,18 @@
FROM
BASEIMAGE
FROM
BASEIMAGE
CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/
RUN
apt-get update
&&
apt-get
install
-y
wget
time
RUN
apt-get update
&&
apt-get
install
-y
wget
time
RUN
pip
install
tensorflow
RUN case
$(
uname
-m
)
in
\
aarch64
)
\
pip
install
tensorflow-aarch64
;
\
;;
\
*
)
\
pip
install
tensorflow
;
\
;;
\
esac
RUN
wget https://github.com/tensorflow/models/archive/v1.9.0.tar.gz
\
RUN
wget https://github.com/tensorflow/models/archive/v1.9.0.tar.gz
\
&&
tar
xzf v1.9.0.tar.gz
\
&&
tar
xzf v1.9.0.tar.gz
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment