1
0
Fork 0
mirror of https://github.com/Luzifer/password.git synced 2024-12-20 12:51:17 +00:00

Dockerized for API deployment

This commit is contained in:
Knut Ahlers 2015-05-02 15:50:32 +02:00
parent 60caeaaecd
commit 84a1911002

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
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"]