File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed
Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ To build with docker on your local machine delete all su images and containers i
9797
9898``` sh
9999docker system prune -a
100- docker build --target builder -t su-binary .
100+ docker buildx build --platform linux/amd64 --target builder -t su-binary .
101101docker create --name temp-container su-binary
102102docker cp temp-container:/usr/src/su/target/release/su .
103103```
@@ -173,7 +173,7 @@ Over time the su database has evolved. It started as only Postgres then went to
173173Building the cli binary, delete all su images and containers if you have previously run this, then run
174174``` sh
175175docker system prune -a
176- docker build --target cli-builder -t cli-binary -f DockerfileCli .
176+ docker buildx build --platform linux/amd64 --target cli-builder -t cli-binary -f DockerfileCli .
177177docker create --name temp-container-cli cli-binary
178178docker cp temp-container-cli:/usr/src/cli/target/release/cli .
179179```
You canβt perform that action at this time.
0 commit comments