summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-04-14 01:44:51 +0300
committerGitHub <noreply@github.com>2017-04-14 01:44:51 +0300
commite2fe80e352b5d07e105acb0887507ad007321fcd (patch)
tree587719c78ebcf7b9406f9905f73247c02191ad66
parent2df9e1ba1ab574157f71244afd8c41642e29dc93 (diff)
parent1b5a5bba1dfa364e16601f952d2f120511f9a0bb (diff)
downloadwekan-e2fe80e352b5d07e105acb0887507ad007321fcd.tar.gz
wekan-e2fe80e352b5d07e105acb0887507ad007321fcd.tar.bz2
wekan-e2fe80e352b5d07e105acb0887507ad007321fcd.zip
Merge pull request #992 from stephenmoloney/met1.4
Met1.4
-rw-r--r--Dockerfile10
1 files changed, 6 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 8e173379..e49b6dfd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,10 @@
-FROM debian:wheezy
+FROM debian:8.7
MAINTAINER wekan
# Declare Arguments
ARG NODE_VERSION
ARG METEOR_RELEASE
+ARG METEOR_EDGE
ARG NPM_VERSION
ARG ARCHITECTURE
ARG SRC_PATH
@@ -12,7 +13,8 @@ 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}
+ENV METEOR_RELEASE ${METEOR_RELEASE:-1.4.5}
+ENV METEOR_EDGE ${METEOR_EDGE:-1.4.4-rc.6}
ENV NPM_VERSION ${NPM_VERSION:-3.10.10}
ENV ARCHITECTURE ${ARCHITECTURE:-linux-x64}
ENV SRC_PATH ${SRC_PATH:-./}
@@ -76,12 +78,12 @@ RUN \
chown wekan:wekan ./install_meteor.sh && \
###########################
###########################
- # Temporary fix for https://github.com/wekan/wekan/issues/928 until METEOR releases 1.4.4 +
+ # 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@${METEOR_EDGE} && \
gosu wekan /home/wekan/.meteor/meteor -- help \
) && \
###########################