mirror of
https://github.com/Luzifer/password.git
synced 2024-11-09 09:50:07 +00:00
11 lines
216 B
Docker
11 lines
216 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"]
|