Skip to content

Commit

Permalink
chore: update docker in containerengine example (#328)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MylesBorins authored and jmdobry committed Apr 21, 2017
1 parent 9c0d258 commit c4c676c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containerengine/hello-world/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c4c676c

Please sign in to comment.