So I have created a web app which has frontend in react and backend in golang.
The file structure is like this.
app
- client
- Dockerfile
- react app files
- server
- Dockerfile
- go files
- docker-compose.yml
I'm able to run docker-compose up
locally to run the app.
But I'm having problem to push the app into Heroku as it requires Dockerfile
in root dir.
I don't want to make a single Dcokerfile
, How do I push the app to Heroku either using docker-compose.yml
or heroku.yml
Thanks in Advance.