Collects work requests and queues them to be executed
go build
./collector
docker build -t ${GCP_GCR_HOSTNAME}/${GCP_PROJECT_ID}/collector:{VERSION} -f Dockerfile .
Previously, this repo and others in the org were private and required build arguments, which is necessary within an organization protecting its source code. Therefore, the Dockerfile supports the fetching of go-modules within private repositories through build arguments
--build-arg user=${user} --build-arg personal_access_token=${personal_access_token}
docker push ${GCP_GCR_HOSTNAME}/${GCP_PROJECT_ID}/collector:{VERSION}