File tree Expand file tree Collapse file tree 5 files changed +6
-10
lines changed
pre-compose-up-script-test Expand file tree Collapse file tree 5 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ docker_compose_test(
3737``` yaml
3838services :
3939 test_container :
40- image : gcr.io/distroless/static-debian12:debug
40+ image : ubuntu:25.04
4141 entrypoint : ["echo", "Hello World!"]
4242` ` `
4343
Original file line number Diff line number Diff line change 1515
1616services :
1717 test_container :
18- image : gcr.io/distroless/static-debian12:debug
18+ image : ubuntu:25.04
1919 entrypoint : ["cat", "/resources/hello.txt"]
2020 volumes :
2121 - ./src/test/resources:/resources
Original file line number Diff line number Diff line change 1515
1616services :
1717 test_container :
18- image : gcr.io/distroless/static-debian12:debug
18+ image : ubuntu:25.04
1919 entrypoint : ["cat", "/resources/generated_file.txt"]
2020 volumes :
21- - ./src/test/resources :/resources
21+ - /tmp/foo :/resources
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22set -e
33
44# This file is created as a pre-req to the docker-compose test actually running.
5- # Locally, the file will always be there but it won't be checked in as it is in .gitignore.
65# CI will make sure that the file is generated on every execution.
7- touch generated_file.txt
6+ mkdir -p /tmp/foo
7+ touch /tmp/foo/generated_file.txt
You can’t perform that action at this time.
0 commit comments