diff --git a/docs/tutorial/our-application/index.md b/docs/tutorial/our-application/index.md index a6a3fe4..cc3fa94 100644 --- a/docs/tutorial/our-application/index.md +++ b/docs/tutorial/our-application/index.md @@ -40,7 +40,7 @@ see a few flaws in the Dockerfile below. But, don't worry! We'll go over them. FROM node:12-alpine RUN apk add --no-cache python g++ make WORKDIR /app - COPY . . + COPY . / RUN yarn install --production CMD ["node", "src/index.js"] ```