auth

Paddy 2015-07-18 Parent:aa14e29b666f

179:7bba108d2d9a Go to Latest

auth/authd/Dockerfile

Send events when logins are verified. Add an ActionLoginVerified constant to use as the action when a login has been verified. On second thought, this should probably just be "verified", huh? Then we can reuse it across models. Oops. We also added a call to send a login verified event to NSQ when the login is verified.

History
paddy@175 1 FROM busybox
paddy@175 2
paddy@175 3 ADD docker-authd /bin/authd/authd
paddy@175 4 ADD templates /bin/authd/templates
paddy@175 5 ADD wrapper.sh /bin/authd/run.sh
paddy@175 6 ADD ca-certificates.crt /etc/ssl/certs/
paddy@175 7
paddy@175 8 WORKDIR /bin/authd
paddy@175 9
paddy@175 10 EXPOSE 9000
paddy@175 11
paddy@175 12 CMD ["./run.sh"]