mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
10 lines
258 B
Docker
10 lines
258 B
Docker
FROM scratch
|
|
|
|
VOLUME /data
|
|
EXPOSE 3000
|
|
ENTRYPOINT ["/cloudkeys"]
|
|
CMD ["--storage=local:////data", "--password-salt=changeme", "--username-salt=changeme"]
|
|
|
|
ADD ./ca-certificates.pem /etc/ssl/ca-bundle.pem
|
|
ADD ./cloudkeys /cloudkeys
|
|
ADD ./templates /templates
|