mirror of
https://github.com/mjl-/mox.git
synced 2025-07-17 01:26:07 +03:00
fix building fresh docker images for integration tests
i always get bitten by some caching or missing checks when i use docker... Dockerfile.moxmail doesn't exist anymore, but that doesn't matter, it doesn't even look at it but will just use some image that is still around (based on the name?) i suppose that means docker-compose also doesn't rebuild an image when the dockerfile mentioned in the build changes.
This commit is contained in:
4
Makefile
4
Makefile
@ -49,8 +49,8 @@ fuzz:
|
||||
|
||||
|
||||
test-integration:
|
||||
docker image build --pull -f Dockerfile -t mox_integration_moxmail .
|
||||
docker image build --pull -f testdata/integration/Dockerfile.test -t mox_integration_test testdata/integration
|
||||
docker image build --pull --no-cache -f Dockerfile -t mox_integration_moxmail .
|
||||
docker image build --pull --no-cache -f testdata/integration/Dockerfile.test -t mox_integration_test testdata/integration
|
||||
-rm -rf testdata/integration/moxacmepebble/data
|
||||
-rm -rf testdata/integration/moxmail2/data
|
||||
-rm -f testdata/integration/tmp-pebble-ca.pem
|
||||
|
Reference in New Issue
Block a user