From a5913b9f5bd67978420bdb7517a3f3f3ba00934f Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Thu, 23 Jul 2020 19:16:29 -0500 Subject: [PATCH] Fix cache path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d6365cf6..41045b5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ FROM node:current-alpine as dependency-stage WORKDIR /app ## Install build toolchain, install node deps and compile native add-ons RUN apk add --no-cache python make g++ -RUN NPM_CONFIG_PREFIX=/app/.npm-global NPM_CONFIG_CACHE=/home/.cache npm install --loglevel verbose -g syncloungesocket@2.0.6 nconf +RUN NPM_CONFIG_PREFIX=/app/.npm-global NPM_CONFIG_CACHE=/home/node/.cache npm install --loglevel verbose -g syncloungesocket@2.0.6 nconf COPY docker-entrypoint.sh . COPY config config