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

11 lines
296 B
Text
Raw Normal View History

2015-07-29 07:01:23 +00:00
FROM scratch
VOLUME /data
EXPOSE 3000
2015-07-29 10:07:42 +00:00
ENTRYPOINT ["/cloudkeys-go"]
2015-07-29 07:01:23 +00:00
CMD ["--storage=local:////data", "--password-salt=changeme", "--username-salt=changeme"]
2015-08-24 22:10:07 +00:00
ADD https://rootcastore.hub.luzifer.io/v1/store/latest /etc/ssl/ca-bundle.pem
2015-07-29 10:07:42 +00:00
ADD ./cloudkeys-go /cloudkeys-go
2015-07-29 07:01:23 +00:00
ADD ./templates /templates