Skip to content

Tweak tests for BCR #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ docker_compose_test(
```yaml
services:
test_container:
image: gcr.io/distroless/static-debian12:debug
image: ubuntu:25.04
entrypoint: ["echo", "Hello World!"]
```

Expand Down
2 changes: 1 addition & 1 deletion examples/external-image-test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

services:
test_container:
image: gcr.io/distroless/static-debian12:debug
image: ubuntu:25.04
entrypoint: ["cat", "/resources/hello.txt"]
volumes:
- ./src/test/resources:/resources
4 changes: 2 additions & 2 deletions examples/pre-compose-up-script-test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

services:
test_container:
image: gcr.io/distroless/static-debian12:debug
image: ubuntu:25.04
entrypoint: ["cat", "/resources/generated_file.txt"]
volumes:
- ./src/test/resources:/resources
- /tmp/foo:/resources

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
set -e

# This file is created as a pre-req to the docker-compose test actually running.
# Locally, the file will always be there but it won't be checked in as it is in .gitignore.
# CI will make sure that the file is generated on every execution.
touch generated_file.txt
mkdir -p /tmp/foo
touch /tmp/foo/generated_file.txt
Loading