1
0
Fork 0
mirror of https://github.com/Luzifer/password.git synced 2024-11-08 17:30:10 +00:00
password/Dockerfile

11 lines
219 B
Docker

FROM golang
MAINTAINER Knut Ahlers <knut@ahlers.me>
RUN go get github.com/Luzifer/password && \
go install github.com/Luzifer/password
EXPOSE 3000
ENTRYPOINT ["/go/bin/password"]
CMD ["serve", "--port", "3000"]