diff --git a/nodebb/Dockerfile b/nodebb/Dockerfile index 2c6b689..79af512 100644 --- a/nodebb/Dockerfile +++ b/nodebb/Dockerfile @@ -5,10 +5,10 @@ FROM alpine MAINTAINER kev -ENV BB_VER 1.10.1 -ENV BB_URL https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz -ENV BB_SOURCE /usr/src/nodebb -ENV BB_CONTENT /var/lib/nodebb +ENV BB_VER=1.12.2 +ENV BB_URL=https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz +ENV BB_SOURCE=/usr/src/nodebb +ENV BB_CONTENT=/var/lib/nodebb WORKDIR $BB_SOURCE VOLUME $BB_CONTENT diff --git a/nodebb/Dockerfile.debian b/nodebb/Dockerfile.debian index 2df6330..9055d1c 100644 --- a/nodebb/Dockerfile.debian +++ b/nodebb/Dockerfile.debian @@ -5,10 +5,10 @@ FROM debian MAINTAINER kev -ENV BB_VER 1.6.1 -ENV BB_URL https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz -ENV BB_SOURCE /usr/src/nodebb -ENV BB_CONTENT /var/lib/nodebb +ENV BB_VER=1.12.2 +ENV BB_URL=https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz +ENV BB_SOURCE=/usr/src/nodebb +ENV BB_CONTENT=/var/lib/nodebb WORKDIR $BB_SOURCE VOLUME $BB_CONTENT @@ -22,7 +22,7 @@ RUN set -ex \ libssl1.0.0 \ libssl-dev \ python \ - && curl -sSL https://deb.nodesource.com/setup_6.x | bash - \ + && curl -sSL https://deb.nodesource.com/setup_10.x | bash - \ && apt-get install -y nodejs \ && curl -sSL $BB_URL | tar xz --strip 1 \ && npm install --production \ diff --git a/nodebb/arm/Dockerfile b/nodebb/arm/Dockerfile index 008c4e9..d87e957 100644 --- a/nodebb/arm/Dockerfile +++ b/nodebb/arm/Dockerfile @@ -2,13 +2,13 @@ # Dockerfile for nodebb-arm # -FROM easypi/alpine-arm +FROM arm32v7/alpine:3 MAINTAINER EasyPi Software Foundation -ENV BB_VER 1.10.1 -ENV BB_URL https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz -ENV BB_SOURCE /usr/src/nodebb -ENV BB_CONTENT /var/lib/nodebb +ENV BB_VER=1.12.2 +ENV BB_URL=https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz +ENV BB_SOURCE=/usr/src/nodebb +ENV BB_CONTENT=/var/lib/nodebb WORKDIR $BB_SOURCE VOLUME $BB_CONTENT diff --git a/nodebb/arm/Dockerfile.debian b/nodebb/arm/Dockerfile.debian index d7ef42b..907cce2 100644 --- a/nodebb/arm/Dockerfile.debian +++ b/nodebb/arm/Dockerfile.debian @@ -5,10 +5,10 @@ FROM resin/rpi-raspbian MAINTAINER EasyPi Software Foundation -ENV BB_VER 1.6.1 -ENV BB_URL https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz -ENV BB_SOURCE /usr/src/nodebb -ENV BB_CONTENT /var/lib/nodebb +ENV BB_VER=1.12.2 +ENV BB_URL=https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz +ENV BB_SOURCE=/usr/src/nodebb +ENV BB_CONTENT=/var/lib/nodebb WORKDIR $BB_SOURCE VOLUME $BB_CONTENT @@ -22,7 +22,7 @@ RUN set -ex \ libssl1.0.0 \ libssl-dev \ python \ - && curl -sSL https://deb.nodesource.com/setup_6.x | bash - \ + && curl -sSL https://deb.nodesource.com/setup_10.x | bash - \ && apt-get install -y nodejs \ && curl -sSL $BB_URL | tar xz --strip 1 \ && npm install --production \