dockerfile: fix go install command

Fixes #355.
This commit is contained in:
Jimmy Zelinskie 2015-12-06 21:22:26 -05:00
parent 0a6e5fad1a
commit 3ebb1ee95f

View file

@ -11,7 +11,7 @@ RUN godep restore
# Add and install cayley
ADD . .
RUN go install -v github.com/google/cayley
RUN go install -v github.com/google/cayley/cmd/cayley
# Expose the port and volume for configuration and data persistence. If you're
# using a backend like bolt, make sure the file is saved to this directory.