Skip to content

Commit ad582ab

Browse files
committed
DB testing: Prevented caching during build
To prevent re-using code when re-run for same branch.
1 parent 870f3c5 commit ad582ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/docker/db-testing/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
BRANCH=${1:-development}
44

55
# Build the container with a known name
6-
docker build --build-arg BRANCH="$BRANCH" -t bookstack:db-testing .
6+
docker build --no-cache --build-arg BRANCH="$BRANCH" -t bookstack:db-testing .
77
if [ $? -eq 1 ]; then
88
echo "Failed to build app container for testing"
99
exit 1

0 commit comments

Comments
 (0)