From b9968a3c25432abc36a881cf97b1ade784cd4ca0 Mon Sep 17 00:00:00 2001 From: Mikolaj Pawlikowski Date: Tue, 4 Dec 2018 18:13:15 -0500 Subject: [PATCH 1/2] add Dockerfile Signed-off-by: Mikolaj Pawlikowski --- build/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 build/Dockerfile diff --git a/build/Dockerfile b/build/Dockerfile new file mode 100644 index 0000000..54d9fe4 --- /dev/null +++ b/build/Dockerfile @@ -0,0 +1,6 @@ +FROM scratch + +ADD bin/goldpinger /goldpinger +COPY static/index.html /static/index.html + +ENTRYPOINT ["/goldpinger", "--static-file-path", "/static"] From 3606ffcd2a66e3069afe2ccef23b1224cb940f5e Mon Sep 17 00:00:00 2001 From: Mikolaj Pawlikowski Date: Tue, 4 Dec 2018 18:13:50 -0500 Subject: [PATCH 2/2] Create build.sh Signed-off-by: Mikolaj Pawlikowski --- build/build.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 build/build.sh diff --git a/build/build.sh b/build/build.sh new file mode 100644 index 0000000..3ead649 --- /dev/null +++ b/build/build.sh @@ -0,0 +1,41 @@ +#!/bin/sh + +# Copyright 2016 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# MODIFIED FROM https://github.com/thockin/go-build-template/blob/master/build/build.sh + +set -o errexit +set -o nounset +set -o pipefail + +if [ -z "${PKG}" ]; then + echo "PKG must be set" + exit 1 +fi +if [ -z "${ARCH}" ]; then + echo "ARCH must be set" + exit 1 +fi +if [ -z "${VERSION}" ]; then + echo "VERSION must be set" + exit 1 +fi + +export CGO_ENABLED=0 +export GOARCH="${ARCH}" + +go build \ + -o ./bin/${BIN} \ + ./cmd/${BIN}