Fix issue with packr

Docker file hasn't been working properly for a while. User resolved it with: https://github.com/usefathom/fathom/issues/235#issuecomment-468964157
This commit is contained in:
Jack Ellis 2019-03-15 13:20:31 -05:00 committed by GitHub
parent 84c3c63d8c
commit ce01286bda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ COPY assets/ ./assets/
RUN npm install && NODE_ENV=production ./node_modules/gulp/bin/gulp.js
FROM golang:latest AS binarybuilder
RUN go get -u github.com/gobuffalo/packr/packr
WORKDIR /go/src/github.com/usefathom/fathom
COPY . /go/src/github.com/usefathom/fathom
COPY --from=assetbuilder /app/assets/build ./assets/build