From f5ddb548287897ae688fcaeea278889e52eed8e4 Mon Sep 17 00:00:00 2001 From: Danny van Kooten Date: Wed, 14 Nov 2018 11:48:54 +0100 Subject: [PATCH] call binary directly in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3b25393c..51f2d8f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app COPY package*.json ./ COPY gulpfile.js ./ COPY assets/ ./assets/ -RUN npm install && NODE_ENV=production npx gulp +RUN npm install && NODE_ENV=production ./node_modules/gulp/bin/gulp.js FROM golang:latest AS binarybuilder WORKDIR /go/src/github.com/usefathom/fathom