1
0
Fork 0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-11-08 14:10:05 +00:00

Fixed Makefile and Dockerfile

This commit is contained in:
Knut Ahlers 2015-07-29 12:07:42 +02:00
parent e824d29b9a
commit 0ec796e7c3
2 changed files with 3 additions and 5 deletions

View file

@ -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

View file

@ -1,6 +1,4 @@
#VERSION = $(shell git describe --tags)
VERSION = dev
BOOTSTRAP_VERISON = 3.3.5
VERSION = $(shell git describe --tags)
default: build