diff --git a/docs/src/docs/deploy.md b/docs/src/docs/deploy.md index 1a257e45..1078e3e9 100644 --- a/docs/src/docs/deploy.md +++ b/docs/src/docs/deploy.md @@ -88,14 +88,14 @@ Kubernetes example: Going a step further you can use the Kit CLI container to create your own bespoke ModelKit containers. -Example `dockerfile` for a custom container that has built into it: +Example `dockerfile` for a custom container that has `my-modelkit` built into it: ``` # Staged build to grab the ModelKit so we can use it later FROM ghcr.io/jozu-ai/kit:latest AS modelkit-download # Download your ModelKit into the container - RUN kit unpack /tmp/my-modelkit + RUN kit unpack my-modelkit /tmp/my-modelkit # Actual build stage; this just uses Alpine but you would build whatever # container you need here @@ -109,4 +109,4 @@ Example `dockerfile` for a custom container that has built into it COPY --from=modelkit-download /tmp/my-modelkit /home/user/modelkit-data ``` -**Questions or suggestions?** Drop an [issue in our GitHub repository](https://github.com/jozu-ai/kitops/issues) or join [our Discord server](https://discord.gg/Tapeh8agYy) to get support or share your feedback. \ No newline at end of file +**Questions or suggestions?** Drop an [issue in our GitHub repository](https://github.com/jozu-ai/kitops/issues) or join [our Discord server](https://discord.gg/Tapeh8agYy) to get support or share your feedback.