Skip to content

Commit

Permalink
chore: update docker in containerengine example
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 committed Mar 29, 2017
1 parent dfc3639 commit 877ee6f
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 877ee6f

Please sign in to comment.