1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-19 18:32:57 +00:00
password/Dockerfile

12 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"]