From 648bfcdaa40f355c8afa1fd2bd5f33b293dadec5 Mon Sep 17 00:00:00 2001 From: Kaustubh Maske Patil <37668193+nikochiko@users.noreply.github.com> Date: Wed, 13 Aug 2025 20:48:51 +0530 Subject: [PATCH 1/2] Add docker build instructions to README --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5c7e31b..014757c 100644 --- a/README.md +++ b/README.md @@ -198,16 +198,19 @@ gooey-gpu also provides a small python helper library to make it easy to write c 10. Once you are confident that the model is working as expected, upload the docker image to a container registry. + For exaxmple, if building the 5th version of `gooey-gpu-common` from the `common` directory: + ```bash - docker tag gooey-gpu-common /: - docker push /: + docker build common -t gooey-gpu-common + docker tag gooey-gpu-common /gooey-gpu-common:5 + docker push /gooey-gpu-common:5 ``` You might need to login to your container registry before pushing the image. Eg for azure: ```bash az acr login --name ``` -11. Update the `model-values.yaml` file with the new image (or create a new file) +12. Update the `model-values.yaml` file with the new image (or create a new file) - Under `rabbitmqAutoscaling`, add the new env var name ```yaml rabbitmqAutoscaling: From c76ca7ab3a1c129a852ae616d863f6ee383db277 Mon Sep 17 00:00:00 2001 From: Kaustubh Maske Patil <37668193+nikochiko@users.noreply.github.com> Date: Fri, 22 Aug 2025 17:02:52 +0530 Subject: [PATCH 2/2] fix: use -f option for docker build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 014757c..1b0b080 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ gooey-gpu also provides a small python helper library to make it easy to write c For exaxmple, if building the 5th version of `gooey-gpu-common` from the `common` directory: ```bash - docker build common -t gooey-gpu-common + docker build -f common/Dockerfile -t gooey-gpu-common . docker tag gooey-gpu-common /gooey-gpu-common:5 docker push /gooey-gpu-common:5 ```