Fix the call to docker build to always build the latest image.

This commit is contained in:
Ramon Novoa 2019-05-08 11:18:12 +02:00
parent 297f53b9de
commit a9bf83cc5b
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/bash #!/bin/bash
docker build --rm=true --build-arg BRANCH="develop" --build-arg DB_PASS="pandora" -t pandorafms/pandorafms:7 . && \ docker build --rm=true --pull --no-cache --build-arg BRANCH="develop" --build-arg DB_PASS="pandora" -t pandorafms/pandorafms:7 . && \
docker push pandorafms/pandorafms:7 docker push pandorafms/pandorafms:7