From bc0416bf2445092a14e7514dd493589c2ffb7b31 Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Tue, 4 Feb 2020 14:10:50 +0000 Subject: [PATCH] Update Travis build to use single set of env-vars The array format was causing a matrix build. Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- .travis.yml | 4 +--- Dockerfile | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9970d14a..4cae1207 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,4 @@ deploy: on: tags: true -env: -- GO111MODULE=on -- GOFLAGS=-mod=vendor +env: GO111MODULE=on GOFLAGS=-mod=vendor diff --git a/Dockerfile b/Dockerfile index 1589d66b..7d94e00d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,5 +39,4 @@ COPY --from=builder /go/src/github.com/openfaas-incubator/ingress-operator/ingre USER app -ENTRYPOINT ["./ingress-operator"] -CMD ["-logtostderr"] +CMD ["./ingress-operator"]