Skip to content

Commit

Permalink
docs(backend): fixed docker cmd in docs for non-amd64 (#11610)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Dowler <[email protected]>
  • Loading branch information
dandawg authored Feb 12, 2025
1 parent ba22703 commit a1f3262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The Pipeline system is included in kubeflow. See [Getting Started Guide](https:/

To be able to use GKE, the Docker images need to be uploaded to a public Docker repository, such as [GCR](https://cloud.google.com/container-registry/)

To build the API server image and upload it to GCR on x86_64 machines:
To build the API server image and upload it to GCR on x86_64 (amd64) machines:

```bash
# Run in the repository root directory
Expand All @@ -26,7 +26,7 @@ To build the API server image and upload it to GCR on non-x86_64 machines (such

```bash
# Run in the repository root directory
$ docker build -t gcr.io/<your-gcp-project>/api-server:latest -f backend/Dockerfile
$ docker build --platform linux/amd64 -t gcr.io/<your-gcp-project>/api-server:latest -f backend/Dockerfile .
# Push to GCR
$ gcloud auth configure-docker
$ docker push gcr.io/<your-gcp-project>/api-server:latest
Expand Down

0 comments on commit a1f3262

Please sign in to comment.