Skip to content

Commit 397f111

Browse files
author
Justin Peter
authored
Update Dockerfile
Typo in original. Missing " * " on line 47.
1 parent 17c78b6 commit 397f111

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/container-instances/container-instances-tutorial-prepare-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The Dockerfile in the sample application shows how the container is built. It st
4444
```Dockerfile
4545
FROM node:8.9.3-alpine
4646
RUN mkdir -p /usr/src/app
47-
COPY ./app/ /usr/src/app/
47+
COPY ./app/* /usr/src/app/
4848
WORKDIR /usr/src/app
4949
RUN npm install
5050
CMD node /usr/src/app/index.js

0 commit comments

Comments
 (0)