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 da70e58 commit f365db6Copy full SHA for f365db6
.gitignore
@@ -1,5 +1,4 @@
1
.idea
2
-/base/generate.sh
3
/simulationx/runLocal.sh
4
/simulationx/regenerateAll.sh
5
/base/runLocal.sh
base/generate.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+set -ex
+
+# Set the platform flag if we're on ARM
6
+arch=$(uname -m)
7
+if [[ "$arch" == "arm64" || "$arch" == "aarch64" ]]; then
8
+ platform_flag="--platform linux/amd64"
9
+else
10
+ platform_flag=""
11
+fi
12
13
14
+docker build $platform_flag -t neuralensemble/base .
0 commit comments