summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2019-10-12 22:59:29 -0400
committerGitHub <noreply@github.com>2019-10-12 22:59:29 -0400
commite1d75b03fbec474113b80edd19d682caec44b8f2 (patch)
treeb3d4d5cd2553004d1fdea2940fe1fdb50ea41048
parent20228daf2fbab88464eaf6fe71d1616d0d47401b (diff)
parent5eab99912d2e48191647b8674235f278bd31c35d (diff)
Merge pull request #626 from hairyhenderson/speed-up-docker-build
Speed up docker build by not building all platforms
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 5376f005..0b8096da 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -14,7 +14,7 @@ RUN mkdir -p /go/src/github.com/hairyhenderson/gomplate
WORKDIR /go/src/github.com/hairyhenderson/gomplate
COPY . /go/src/github.com/hairyhenderson/gomplate
-RUN make build-x compress-all
+RUN make build compress
FROM scratch AS artifacts