summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2019-10-16 00:34:16 -0400
committerMicah Anderson <micah@riseup.net>2019-10-16 00:34:16 -0400
commit2c453c0b2450211375fd97cdb71ca92bf90d587f (patch)
treeee57ea3d61377bff21464d295588260025e79381
parentcab65e0313aa2f4c005565b8efa0e2df7033787b (diff)
Entrypoint flags need to be specified by commas
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 51823c5..1f00c23 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,4 +11,4 @@ FROM debian:stable
COPY --from=build /usr/share/doc/geoipupdate/examples/GeoIP.conf.default /etc/GeoIP.conf
COPY --from=build /go/bin/getmyip /usr/local/bin/getmyip
-ENTRYPOINT ["/usr/local/bin/getmyip -notls"]
+ENTRYPOINT ["/usr/local/bin/getmyip", "-notls"]