Update index.md

Changed line 42

This change will help new users who follows this tutorial to get a working container as a result from building using the dockerfile commands proposed in lines 40-44, as expected to be.

See issue #121
This commit is contained in:
Eduardo Fernández 2021-02-15 12:10:56 -03:00 committed by GitHub
parent 3de6451f5c
commit 78de317ccb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ see a few flaws in the Dockerfile below. But, don't worry! We'll go over them.
```dockerfile
FROM node:12-alpine
WORKDIR /app
COPY . .
COPY . /
RUN yarn install --production
CMD ["node", "src/index.js"]
```