Skip to content

Commit a46dec8

Browse files
committed
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.
1 parent 0208084 commit a46dec8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

containerengine/hello-world/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# limitations under the License.
1313

1414
# [START all]
15-
FROM node:4
15+
FROM node:6-alpine
1616
EXPOSE 8080
1717
COPY server.js .
1818
CMD node server.js

0 commit comments

Comments
 (0)