summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Moloney <stephen@stephenmoloney.com>2017-04-10 11:26:17 +0100
committerStephen Moloney <stephen@stephenmoloney.com>2017-04-10 11:26:17 +0100
commit14208dca1d863c59fec18dd3e89cdedd68724744 (patch)
treec4fec7bdd4bd983c10b3baaedf3099b2db7b8f89
parent65ba52b17714f2cff366eafce3911d145229a5e5 (diff)
downloadwekan-14208dca1d863c59fec18dd3e89cdedd68724744.tar.gz
wekan-14208dca1d863c59fec18dd3e89cdedd68724744.tar.bz2
wekan-14208dca1d863c59fec18dd3e89cdedd68724744.zip
seems meteor 1.4.4.1 does not include fix for EXDEV problem
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index f63ed887..7c5e1d97 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,7 +12,7 @@ ARG SRC_PATH
ENV BUILD_DEPS="wget curl bzip2 build-essential python git ca-certificates"
ENV GOSU_VERSION=1.10
ENV NODE_VERSION ${NODE_VERSION:-v6.10.2}
-ENV METEOR_RELEASE ${METEOR_RELEASE:-1.4.4.1}
+ENV METEOR_RELEASE ${METEOR_RELEASE:-1.4.5}
ENV NPM_VERSION ${NPM_VERSION:-3.10.10}
ENV ARCHITECTURE ${ARCHITECTURE:-linux-x64}
ENV SRC_PATH ${SRC_PATH:-./}
@@ -76,12 +76,12 @@ RUN \
chown wekan:wekan ./install_meteor.sh && \
###########################
###########################
- # This block is for installing on release candidates, suppose can be left in place for now.
+ # Block for ensuring installation of release candidates - perhaps remove later.
gosu wekan:wekan sh ./install_meteor.sh || \
( \
gosu wekan:wekan git clone --recursive git://github.com/meteor/meteor.git /home/wekan/.meteor && \
cd /home/wekan/.meteor && \
- gosu wekan:wekan git checkout release/METEOR@1.4.4-rc.6 && \
+ gosu wekan:wekan git checkout release/METEOR@1.4.4-rc.9 && \
gosu wekan /home/wekan/.meteor/meteor -- help \
) && \
###########################