File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,11 @@ touch Dockerfile
77
77
Open the ` Dockerfile ` in your favorite text editor
78
78
79
79
The first thing we need to do is define from what image we want to build from.
80
- Here we will use the latest LTS (long term support) version ` argon ` of ` node `
80
+ Here we will use the latest LTS (long term support) version ` boron ` of ` node `
81
81
available from the [ Docker Hub] ( https://hub.docker.com/ ) :
82
82
83
83
``` docker
84
- FROM node:argon
84
+ FROM node:boron
85
85
```
86
86
87
87
Next we create a directory to hold the application code inside the image, this
@@ -128,7 +128,7 @@ CMD [ "npm", "start" ]
128
128
Your ` Dockerfile ` should now look like this:
129
129
130
130
``` docker
131
- FROM node:argon
131
+ FROM node:boron
132
132
133
133
# Create app directory
134
134
RUN mkdir -p /usr/src/app
@@ -175,7 +175,7 @@ $ docker images
175
175
176
176
# Example
177
177
REPOSITORY TAG ID CREATED
178
- node argon 539c0211cd76 3 weeks ago
178
+ node boron 539c0211cd76 3 weeks ago
179
179
< your username> /node-web-app latest d64d3505b0d2 1 minute ago
180
180
```
181
181
You can’t perform that action at this time.
0 commit comments