Skip to content

Commit 07d5963

Browse files
author
djskinner
authored
Merge pull request #1699 from bugsnag/plat-7811
chore(examples): add missing Dockerfile to angular example
2 parents 248e5e3 + 6ac68ca commit 07d5963

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

examples/ts/angular/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM node:8
2+
3+
WORKDIR /usr/src/app
4+
5+
COPY package* /usr/src/app/
6+
RUN npm install
7+
8+
COPY . /usr/src/app/
9+
CMD npm run serve -- --host 0.0.0.0

examples/ts/angular/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ docker build -t bugsnag-js-example-angular . && \
2727
docker run -p 4200:4200 -it bugsnag-js-example-angular
2828
```
2929

30-
__Note__: remember to replace `YOUR_API_KEY` in `src/lib/bugsnag.js` with your own!
30+
__Note__: remember to replace `YOUR_API_KEY` in `src/app/app.module.ts` with your own!
3131

3232
### Without docker
3333
Ensure you have a version of Node.js >=4 on your machine.

0 commit comments

Comments
 (0)