From 877ee6f2369c3bb603a3b056f29c252bfc54c475 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Wed, 29 Mar 2017 16:23:16 -0400 Subject: [PATCH] chore: update docker in containerengine example Currently we are pegged to Node:4. This is an older LTS image and clocks in at 655 MB. This PR updates us to Node:6-alpine. This will use a more modern LTS branch, and also switches to the Alpine container which clocks in at 54 MB. --- containerengine/hello-world/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containerengine/hello-world/Dockerfile b/containerengine/hello-world/Dockerfile index e40f93fbc99..337a3d0bf12 100644 --- a/containerengine/hello-world/Dockerfile +++ b/containerengine/hello-world/Dockerfile @@ -12,7 +12,7 @@ # limitations under the License. # [START all] -FROM node:4 +FROM node:6-alpine EXPOSE 8080 COPY server.js . CMD node server.js