summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorStephen Moloney <stephen@stephenmoloney.com>2017-04-10 11:27:56 +0100
committerStephen Moloney <stephen@stephenmoloney.com>2017-04-10 11:27:56 +0100
commit31ce8bb1bf19141655797d5d70574a6a5c15b94e (patch)
tree28cfa90bdcd53f1329a765efbaacfafd26eff2b7 /Dockerfile
parent14208dca1d863c59fec18dd3e89cdedd68724744 (diff)
downloadwekan-31ce8bb1bf19141655797d5d70574a6a5c15b94e.tar.gz
wekan-31ce8bb1bf19141655797d5d70574a6a5c15b94e.tar.bz2
wekan-31ce8bb1bf19141655797d5d70574a6a5c15b94e.zip
MAKE release candidates and betas specifiable in dockerbuild
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 7c5e1d97..247817cc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,6 +4,7 @@ MAINTAINER wekan
# Declare Arguments
ARG NODE_VERSION
ARG METEOR_RELEASE
+ARG METEOR_EDGE
ARG NPM_VERSION
ARG ARCHITECTURE
ARG SRC_PATH
@@ -13,6 +14,7 @@ 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.5}
+ENV METEOR_EDGE ${METEOR_EDGE:-1.4.4-rc.9}
ENV NPM_VERSION ${NPM_VERSION:-3.10.10}
ENV ARCHITECTURE ${ARCHITECTURE:-linux-x64}
ENV SRC_PATH ${SRC_PATH:-./}
@@ -81,7 +83,7 @@ RUN \
( \
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.9 && \
+ gosu wekan:wekan git checkout release/METEOR@${METEOR_EDGE} && \
gosu wekan /home/wekan/.meteor/meteor -- help \
) && \
###########################