From 5d5286abfc672ce2c89bb4fa768a7f2c464045c3 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Fri, 20 Jul 2018 15:20:55 +0200 Subject: [PATCH] Fix for Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 035c7fbf2..b73c4dc98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -88,7 +88,7 @@ COPY . . RUN dep ensure # Install the app -RUN go install -v ./... +RUN go build cmd/photoprism/photoprism.go # Run the app -CMD [ "photoprism start" ] \ No newline at end of file +CMD [ "./photoprism start" ] \ No newline at end of file