diff --git a/Dockerfile b/Dockerfile index d165011..45abe18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM scratch VOLUME /data EXPOSE 3000 -ENTRYPOINT ["/cloudkeys"] +ENTRYPOINT ["/cloudkeys-go"] CMD ["--storage=local:////data", "--password-salt=changeme", "--username-salt=changeme"] ADD ./ca-certificates.pem /etc/ssl/ca-bundle.pem -ADD ./cloudkeys /cloudkeys +ADD ./cloudkeys-go /cloudkeys-go ADD ./templates /templates diff --git a/Makefile b/Makefile index 711c2e9..a79ddc7 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,4 @@ -#VERSION = $(shell git describe --tags) -VERSION = dev -BOOTSTRAP_VERISON = 3.3.5 +VERSION = $(shell git describe --tags) default: build