summaryrefslogtreecommitdiffstats
path: root/snapcraft.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'snapcraft.yaml')
-rw-r--r--snapcraft.yaml16
1 files changed, 11 insertions, 5 deletions
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 59e786d8..18b980f8 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -54,7 +54,7 @@ apps:
parts:
mongodb:
- source: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.2.16.tgz
+ source: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.2.18.tgz
plugin: dump
stage-packages: [libssl1.0.0]
filesets:
@@ -70,23 +70,29 @@ parts:
wekan:
source: .
plugin: nodejs
- node-engine: 4.8.4
+ node-engine: 4.8.7
node-packages:
+ - n
- npm@4.6.1
- node-gyp
- node-pre-gyp
- fibers@1.0.15
build-packages:
+ - ca-certificates
- python
- g++
- capnproto
- - nodejs
- - nodejs-legacy
+ - npm
- curl
+ - paxctl
prepare: |
echo "Cleaning environment first"
rm -rf ~/.meteor ~/.npm /usr/local/lib/node_modules
- echo "installing meteor first"
+ echo "Installing node"
+ n 4.8.7
+ echo "Applying paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303"
+ paxctl -mC `which node`
+ echo "Installing meteor"
curl https://install.meteor.com/ -o install_meteor.sh
sed -i "s|RELEASE=.*|RELEASE=\"1.4.4.1\"|g" install_meteor.sh
chmod +x install_meteor.sh