Update Dockerfile example in README (#482)

This commit is contained in:
Bea 2017-08-01 12:22:02 +02:00 committed by Simen Bekkhus
parent d77913eb25
commit 778cfef0cb
1 changed files with 2 additions and 1 deletions

View File

@ -51,7 +51,8 @@ See: http://nodejs.org
## Create a `Dockerfile` in your Node.js app project
```dockerfile
FROM node:4-onbuild
# specify the node base image with your desired version node:<version>
FROM node:6
# replace this with your application's default port
EXPOSE 8888
```