File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ COPY package.json ./
1818COPY package-lock.json ./
1919
2020# Setup the application itself
21- RUN npm install --silent
21+ RUN npm install
2222
2323COPY . ./
2424
@@ -28,4 +28,4 @@ RUN npm run build
2828ENTRYPOINT [ "npm" , "run" , "start" ]
2929
3030# For debugging.
31- # ENTRYPOINT ["tail", "-f", "/dev/null"]
31+ # ENTRYPOINT ["tail", "-f", "/dev/null"]
Original file line number Diff line number Diff line change 2626 "ts-node-dev" : " ^1.1.6"
2727 },
2828 "scripts" : {
29- "prepare" : " [ -d .git ] && (P=.git/hooks/pre-commit; echo \" #!/bin/sh\\ nnpm run lint:check\" > $P; chmod 777 $P)" ,
29+ "prepare" : " [ -d .git ] && (P=.git/hooks/pre-commit; echo \" #!/bin/sh\\ nnpm run lint:check\" > $P; chmod 777 $P) || true " ,
3030 "dev" : " ts-node-dev --quiet --rs --respawn --clear --transpile-only src/app.ts" ,
3131 "init-db" : " sqlite3 ./db/peerdb.sqlite < ./sql/default.sql" ,
3232 "build" : " tsc" ,
You can’t perform that action at this time.
0 commit comments