From 4070cfc2dd43c54b0044d69b0001bc59e282382a Mon Sep 17 00:00:00 2001 From: Ivan Krutov Date: Thu, 25 May 2023 19:10:40 +0300 Subject: [PATCH] Fixed contributing guide --- docs/contributing.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/contributing.adoc b/docs/contributing.adoc index 080c3903..f941df74 100644 --- a/docs/contributing.adoc +++ b/docs/contributing.adoc @@ -30,8 +30,9 @@ To build Docker container type: [source,bash] ---- -$ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -$ docker build -t selenoid:latest . +$ mkdir -p dist +$ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o dist/selenoid_linux_amd64 +$ docker buildx build --pull --platform linux/amd64 -t selenoid:latest . ---- ====