diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-10-10 19:02:03 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-10-10 19:02:03 +0300 |
commit | b7a74e25bc6905fb2992d13a6251cb3d6d4cbd5d (patch) | |
tree | 145a057eacce1981e603c4941653357d0aba9143 /Dockerfile | |
parent | 219091eb5e55a971420aeb4e9c378df2468b51d4 (diff) | |
download | wekan-b7a74e25bc6905fb2992d13a6251cb3d6d4cbd5d.tar.gz wekan-b7a74e25bc6905fb2992d13a6251cb3d6d4cbd5d.tar.bz2 wekan-b7a74e25bc6905fb2992d13a6251cb3d6d4cbd5d.zip |
- Try to fix Docker.
Thanks to xet7 !
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -70,7 +70,7 @@ ARG LDAP_DEFAULT_DOMAIN # ENV BUILD_DEPS="paxctl" ENV BUILD_DEPS="apt-utils bsdtar gnupg gosu wget curl bzip2 build-essential python git ca-certificates gcc-7" \ NODE_VERSION=v8.12.0 \ - METEOR_RELEASE=1.8.1-beta.0 \ + METEOR_RELEASE= \ USE_EDGE=false \ METEOR_EDGE=1.5-beta.17 \ NPM_VERSION=latest \ @@ -208,7 +208,8 @@ RUN \ # Change user to wekan and install meteor cd /home/wekan/ && \ chown wekan:wekan --recursive /home/wekan && \ - curl "https://install.meteor.com/?release=${METEOR_RELEASE}" -o /home/wekan/install_meteor.sh && \ + curl "https://install.meteor.com" -o /home/wekan/install_meteor.sh && \ + #curl "https://install.meteor.com/?release=${METEOR_RELEASE}" -o /home/wekan/install_meteor.sh && \ # OLD: sed -i "s|RELEASE=.*|RELEASE=${METEOR_RELEASE}\"\"|g" ./install_meteor.sh && \ # Install Meteor forcing its progress sed -i 's/VERBOSITY="--silent"/VERBOSITY="--progress-bar"/' ./install_meteor.sh && \ |