File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112112 - name : Extract standalone binary from Docker image
113113 run : |
114114 VERSION=${{ steps.package-version.outputs.version }}
115- CONTAINER_ID=$(docker create cloudflare/sandbox:$VERSION)
115+ CONTAINER_ID=$(docker create --platform linux/amd64 cloudflare/sandbox:$VERSION)
116116 docker cp $CONTAINER_ID:/container-server/sandbox ./sandbox-linux-x64
117117 docker rm $CONTAINER_ID
118118 chmod +x ./sandbox-linux-x64
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ jobs:
216216 - name : Extract standalone binary from Docker image
217217 run : |
218218 VERSION=${{ needs.unit-tests.outputs.version }}
219- CONTAINER_ID=$(docker create cloudflare/sandbox:$VERSION)
219+ CONTAINER_ID=$(docker create --platform linux/amd64 cloudflare/sandbox:$VERSION)
220220 docker cp $CONTAINER_ID:/container-server/sandbox ./sandbox-linux-x64
221221 docker rm $CONTAINER_ID
222222 file ./sandbox-linux-x64
You can’t perform that action at this time.
0 commit comments