From 17a511c7aeb5600756b6726462e76db20082f5a6 Mon Sep 17 00:00:00 2001 From: MaxWindt <86522026+MaxWindt@users.noreply.github.com> Date: Wed, 14 Jan 2026 13:55:25 +0100 Subject: [PATCH] Replaced local folder building with direct link to repo master branch --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d36c13c..9563b145 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ bun install Build image ```sh -docker build -t copilot-api . +docker build -t copilot-api https://github.com/ericc-ch/copilot-api.git#master ``` Run the container @@ -86,7 +86,7 @@ You can pass the GitHub token directly to the container using environment variab ```sh # Build with GitHub token -docker build --build-arg GH_TOKEN=your_github_token_here -t copilot-api . +docker build --build-arg GH_TOKEN=your_github_token_here -t copilot-api https://github.com/ericc-ch/copilot-api.git#master # Run with GitHub token docker run -p 4141:4141 -e GH_TOKEN=your_github_token_here copilot-api