I want to create dataBase for autotest in kubernetes. I want to create an image(postg-my-app-v1) from postgres image, add changelog files, and liquibase image. When I deploy this image with helm i just want to specify containers - postg-my-app-v1 and it should startup pod with database and create tables with liquibase changelog.
Now i create Dockerfile as below
FROM postgres
ADD /changelog /liquibase/changelog
I don't understand how to add liquibase to this image? Or i must use docker compose? or helm lifecycle postStart for liquibase?