summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-07-10 19:20:38 -0400
committerLauri Ojansivu <x@xet7.org>2019-07-10 19:20:38 -0400
commit7a03e0ef12428f36fc3ae113b07b1b43e9ef2206 (patch)
treeb28baac48ba45715b4ea7a2e19437ec17905aac9
parentaa7ad516eea54b5f7d4576afdb57ac1cd8d5382b (diff)
downloadwekan-7a03e0ef12428f36fc3ae113b07b1b43e9ef2206.tar.gz
wekan-7a03e0ef12428f36fc3ae113b07b1b43e9ef2206.tar.bz2
wekan-7a03e0ef12428f36fc3ae113b07b1b43e9ef2206.zip
Try to fix Dockerfile.
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 9f89948a..3d8c0923 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -176,8 +176,9 @@ RUN \
#DOES NOT WORK: paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303
#paxctl -mC `which node` && \
\
- # Install Node dependencies
+ # Install Node dependencies. Python path for node-gyp.
npm install -g npm@${NPM_VERSION} && \
+ npm config set python /usr/bin/python && \
npm install -g node-gyp && \
npm install -g fibers@${FIBERS_VERSION} && \
\