[README.md] Removed sudo from multiplatform build explanation for consistency

This commit is contained in:
BlueFox 2024-09-22 18:17:20 +00:00
parent 6c841a9ba9
commit edde9f5c25

View File

@ -22,7 +22,7 @@ docker build -t git-puller .
To do a multi-platform build (here with basic architectures) and upload to Docker Hub (make sure to replace <USER> with your Docker Hub username):
```sh
sudo docker buildx build --no-cache --platform linux/amd64,linux/arm64/v8 -t <USER>/git-puller . --push
docker buildx build --no-cache --platform linux/amd64,linux/arm64/v8 -t <USER>/git-puller . --push
```
After this is done successfully, you can check out the new image in your local image store with `docker images`.