diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-06-07 21:54:08 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-06-07 21:54:08 +0300 |
commit | 90d55777f7298d243ed0de03c934cea239a31272 (patch) | |
tree | a640a320578d98d9b8076c1fead35a21521e5124 /Dockerfile | |
parent | 8471f389ebceac20381ad9f91c8e018c33405fb1 (diff) | |
download | wekan-90d55777f7298d243ed0de03c934cea239a31272.tar.gz wekan-90d55777f7298d243ed0de03c934cea239a31272.tar.bz2 wekan-90d55777f7298d243ed0de03c934cea239a31272.zip |
Copy latest Sandstorm Node.js fork binary from installed Sandstorm
/opt/sandstorm/sandstorm-234/bin/node to https://releases.wekan.team
download server.
Node binary is compiled by https://github.com/kentonv
when doing new release of Sandstorm.
Source code of binary is at:
https://github.com/sandstorm-io/node
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ RUN \ # Description at https://releases.wekan.team/node.txt # SHA256SUM: 18c99d5e79e2fe91e75157a31be30e5420787213684d4048eb91e602e092725d wget https://releases.wekan.team/node-${NODE_VERSION}-${ARCHITECTURE}.tar.gz && \ - echo "c85ed210a360c50d55baaf7b49419236e5241515ed21410d716f4c1f5deedb12 node-v8.11.1-linux-x64.tar.gz" >> SHASUMS256.txt.asc && \ + echo "509e79f1bfccc849b65bd3f207a56095dfa608f17502997e844fa9c9d01e6c20 node-v8.11.1-linux-x64.tar.gz" >> SHASUMS256.txt.asc && \ \ # Verify nodejs authenticity grep ${NODE_VERSION}-${ARCHITECTURE}.tar.gz SHASUMS256.txt.asc | shasum -a 256 -c - && \ |