summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuc DUZAN <luc.duzan@corp.ovh.com>2018-10-16 11:10:34 +0200
committerLuc DUZAN <luc.duzan@corp.ovh.com>2018-10-16 11:10:42 +0200
commit5d577ee9325a44ef15657b3bcd1958c60a551c4e (patch)
tree78ad29bb63ce2c339e89834ebe4fa8bde8803347
parent9fb1abc5c218bc25ec8350f8229be74baeb1497b (diff)
fix docker entrypoint for alpine
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 027eeaae..d6d8c070 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -50,7 +50,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \
RUN apk add --no-cache ca-certificates
COPY --from=artifacts /bin/gomplate_${OS}-${ARCH}-slim /bin/gomplate
-ENTRYPOINT [ "/gomplate" ]
+ENTRYPOINT [ "/bin/gomplate" ]
CMD [ "--help" ]