Reputation: 1800
I have liquibase changelogs inside my project. I want to build a Docker image from them in order to use for integration tests with Testcontainers. How should I do it?
Upvotes: 2
Views: 855
Reputation: 12021
You can achieve this with the following:
Nevertheless, you would have to update your custom Docker image every time you add a new Liquibase changelog. Why not let them run with your integration test and use a raw database?
Upvotes: 2