Skip to content

Commit 64d0e48

Browse files
authored
Merge pull request #1128 from integer32llc/bye-yarn
Remove some vestigial yarn mentions
2 parents 2039fdf + 82d9737 commit 64d0e48

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ services:
3737
build:
3838
context: .
3939
dockerfile: frontend.Dockerfile
40-
entrypoint: yarn run start --proxy http://backend:8888
40+
entrypoint: npm run start --proxy http://backend:8888
4141
links:
4242
- backend
4343
ports:

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ without a restart needed, and you can leave the frontend running while you
333333
restart the server):
334334
335335
```
336-
yarn run start:local
336+
npm run start:local
337337
```
338338
339339
And then you should be able to visit http://localhost:4200!

frontend.Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ FROM node:8.6-alpine
33
WORKDIR /app
44
COPY package.json /app
55

6-
RUN yarn install
7-
86
COPY . /app
97

10-
ENTRYPOINT ["yarn", "run", "start:staging"]
8+
ENTRYPOINT ["npm", "run", "start:staging"]

0 commit comments

Comments
 (0)