Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 3eb92d8

Browse files
committed
circleci changes
1 parent 05a1b10 commit 3eb92d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builddocker.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ docker create --name app $APP_NAME:latest
1010
if [ -d node_modules ]
1111
then
1212
mv package-lock.json old-package-lock.json
13-
docker cp app:/$APP_NAME/package-lock.json package-lock.json
13+
docker cp app:/usr/src/app/package-lock.json package-lock.json
1414
set +eo pipefail
1515
UPDATE_CACHE=$(cmp package-lock.json old-package-lock.json)
1616
set -eo pipefail
@@ -20,5 +20,5 @@ fi
2020

2121
if [ "$UPDATE_CACHE" == 1 ]
2222
then
23-
docker cp app:/$APP_NAME/node_modules .
23+
docker cp app:/usr/src/app/node_modules .
2424
fi

0 commit comments

Comments
 (0)