From ce01286bda21046e19c4e99153edac149bd231a8 Mon Sep 17 00:00:00 2001 From: Jack Ellis Date: Fri, 15 Mar 2019 13:20:31 -0500 Subject: [PATCH] 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 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9d3f3742..9fc22b42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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