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 d42a6cf commit 534ae63Copy full SHA for 534ae63
.github/workflows/docker-publish.yml
@@ -45,7 +45,9 @@ jobs:
45
build-images:
46
strategy:
47
matrix:
48
- arch: ["arm64", "amd64"]
+ #arch: ["arm64", "amd64"]
49
+ # NOTE(luke): temporary disable arm64 since its failing the smoke test
50
+ arch: ["amd64"]
51
runs-on: ubuntu-latest-m
52
needs: [setup, set-short-sha]
53
env:
scripts/docker-smoke-test.sh
@@ -29,8 +29,9 @@ start_container() {
29
fi
30
31
echo Starting container "$name"
32
- docker run -p "$port":"$port" \
33
- --entrypoint uvicorn \
+ docker run --platform "$DOCKER_PLATFORM" \
+ -p "$port":"$port" \
34
+ --entrypoint uvicorn \
35
-d \
36
--rm \
37
--name "$name" \
0 commit comments