8000
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.
1 parent 1f62452 commit cea7b2dCopy full SHA for cea7b2d
Dockerfile
@@ -15,7 +15,10 @@
15
# Use 'docker run' without '--rm' flag for keeping the container and use
16
# 'docker commit <container hash> <new image>' to extend the original image
17
18
-FROM ubuntu:20.04
+# If platform is not specified, by default the target platform of the build request is used.
19
+# This is not what we want, as Google doesn't provide a linux/arm64 compatible NDK.
20
+# See: https://docs.docker.com/engine/reference/builder/#from
21
+FROM --platform=linux/amd64 ubuntu:20.04
22
23
# configure 3C81 locale
24
RUN apt -y update -qq > /dev/null \
0 commit comments