I've set up a CodeBuild on AWS which works fine. Basically I need to do 3 steps
docker-compose up -d- Dump my MysQL.sql into the docker container
- Do some smaller adjustments in the docker container.
since my *.sql file is ~130mb I stored it using git lfs which seems not to be supported by CodeBuild.
Lets not talk about why I need this dump for building my application, it is something I cannot change currently.
How can I get my *.sql file on CodeBuild? Using VPC MySQL is not an option since the costs does not make any sense when I just need it for the deployment. Is there any other possibility?
Thanks in advance