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:
parent
e824d29b9a
commit
0ec796e7c3
2 changed files with 3 additions and 5 deletions
|
@ -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
|
||||
|
|
4
Makefile
4
Makefile
|
@ -1,6 +1,4 @@
|
|||
#VERSION = $(shell git describe --tags)
|
||||
VERSION = dev
|
||||
BOOTSTRAP_VERISON = 3.3.5
|
||||
VERSION = $(shell git describe --tags)
|
||||
|
||||
default: build
|
||||
|
||||
|
|
Loading…
Reference in a new issue