diff --git a/nodebb/Dockerfile b/nodebb/Dockerfile index 79af512..083f437 100644 --- a/nodebb/Dockerfile +++ b/nodebb/Dockerfile @@ -2,10 +2,10 @@ # Dockerfile for nodebb # -FROM alpine -MAINTAINER kev +FROM alpine:3 +MAINTAINER EasyPi Software Foundation -ENV BB_VER=1.12.2 +ENV BB_VER=1.17.0 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 diff --git a/nodebb/arm/Dockerfile b/nodebb/arm/Dockerfile index d87e957..8e83893 100644 --- a/nodebb/arm/Dockerfile +++ b/nodebb/arm/Dockerfile @@ -5,7 +5,7 @@ FROM arm32v7/alpine:3 MAINTAINER EasyPi Software Foundation -ENV BB_VER=1.12.2 +ENV BB_VER=1.17.0 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 diff --git a/nodebb/arm/Dockerfile.debian b/nodebb/arm/Dockerfile.debian index 907cce2..b59a32b 100644 --- a/nodebb/arm/Dockerfile.debian +++ b/nodebb/arm/Dockerfile.debian @@ -5,7 +5,7 @@ FROM resin/rpi-raspbian MAINTAINER EasyPi Software Foundation -ENV BB_VER=1.12.2 +ENV BB_VER=1.17.0 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 @@ -22,7 +22,7 @@ RUN set -ex \ libssl1.0.0 \ libssl-dev \ python \ - && curl -sSL https://deb.nodesource.com/setup_10.x | bash - \ + && curl -sSL https://deb.nodesource.com/setup_14.x | bash - \ && apt-get install -y nodejs \ && curl -sSL $BB_URL | tar xz --strip 1 \ && npm install --production \