Hello, there is a issue with the recent version of create-react-app
that fails to start in docker environment: https://github.com/facebook/create-react-app/issues/8688#issuecomment-642309787
I tried the following options:
- Add an CI=true as an environment variable => does not work
- Downgrade your react-scripts to 3.4.0 => works but I have another compatibility problem if I downgrade the version of
react-scripts
- Add stdin_open: true on your docker-compose command => not tested
Is there a way to customize the docker-compose
file with stdin_open: true
in CircleCI ?
Thanks