Fix for Dockerfile

This commit is contained in:
Michael Mayer 2018-07-20 15:20:55 +02:00
parent 82329a6dcb
commit 5d5286abfc

View file

@ -88,7 +88,7 @@ COPY . .
RUN dep ensure RUN dep ensure
# Install the app # Install the app
RUN go install -v ./... RUN go build cmd/photoprism/photoprism.go
# Run the app # Run the app
CMD [ "photoprism start" ] CMD [ "./photoprism start" ]