From 23e20115daf2c5f4c3e07f908c660c948fe036d7 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Sun, 17 Sep 2017 14:11:11 +0200 Subject: [PATCH] Upgrade Node Environment to 8.x (#329) 7.x has not been maintained since April. 8.x is going into LTS during October and will receive another 30 months of support. --- environments/nodejs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/nodejs/Dockerfile b/environments/nodejs/Dockerfile index a20d035c..8b6a80e0 100644 --- a/environments/nodejs/Dockerfile +++ b/environments/nodejs/Dockerfile @@ -1,6 +1,6 @@ # A docker image for the func container. -FROM node:7-onbuild +FROM node:8-onbuild ADD server.js /usr/src/app/server.js