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
# Install the app
RUN go install -v ./...
RUN go build cmd/photoprism/photoprism.go
# Run the app
CMD [ "photoprism start" ]
CMD [ "./photoprism start" ]