Skip to content

Commit d7a9db8

Browse files
htynknlpinca
authored andcommitted
Update docker image version (#1083)
1 parent d38de4b commit d7a9db8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

locale/en/docs/guides/nodejs-docker-webapp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ touch Dockerfile
7777
Open the `Dockerfile` in your favorite text editor
7878

7979
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`
8181
available from the [Docker Hub](https://hub.docker.com/):
8282

8383
```docker
84-
FROM node:argon
84+
FROM node:boron
8585
```
8686

8787
Next we create a directory to hold the application code inside the image, this
@@ -128,7 +128,7 @@ CMD [ "npm", "start" ]
128128
Your `Dockerfile` should now look like this:
129129

130130
```docker
131-
FROM node:argon
131+
FROM node:boron
132132
133133
# Create app directory
134134
RUN mkdir -p /usr/src/app
@@ -175,7 +175,7 @@ $ docker images
175175

176176
# Example
177177
REPOSITORY TAG ID CREATED
178-
node argon 539c0211cd76 3 weeks ago
178+
node boron 539c0211cd76 3 weeks ago
179179
<your username>/node-web-app latest d64d3505b0d2 1 minute ago
180180
```
181181

0 commit comments

Comments
 (0)