mirror of
https://github.com/Luzifer/password.git
synced 2024-11-09 01:40:04 +00:00
12 lines
219 B
Text
12 lines
219 B
Text
|
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"]
|