From e47d54d541ea6faae584417cafd75ec767a88ba1 Mon Sep 17 00:00:00 2001 From: Nadav Ivgi Date: Sat, 23 Jan 2021 09:56:25 +0200 Subject: [PATCH] Update DockerFileBuildHelper instructions (#433) Added instructions for building with Docker and for updating the repository. --- contrib/DockerFileBuildHelper/README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/contrib/DockerFileBuildHelper/README.md b/contrib/DockerFileBuildHelper/README.md index f1b1d43..b71b055 100644 --- a/contrib/DockerFileBuildHelper/README.md +++ b/contrib/DockerFileBuildHelper/README.md @@ -12,5 +12,12 @@ Install [.NET Core SDK](https://dotnet.microsoft.com/download) and run: ./run.sh ``` -This will build a `build-all.sh` file. -Note that the +Or using Docker: + +``` +docker run -it --rm -v `pwd`:/project -w /project/contrib/DockerFileBuildHelper mcr.microsoft.com/dotnet/sdk:2.1 ./run.sh +``` + +This will build a `build-all.sh` file which you can run locally. + +To update the README table and the `build-all-images.sh` script that's checked into git, replace `run.sh` with `update-repo.sh`.