WhisperLive
WhisperLive copied to clipboard
The `setup.sh` file is using `CRLF`, which should be `LF` since it's a shell script.
The problem occurs when build the docker image.
You are on Windows or Linux? setup.sh is already LF
.
I had the same issue on windows trying to build the container. I used dos2unix to patch setup.sh and it was able to docker build
I also had the same issue, used visual studio code to switch the file from CRLF
to LF
.
@Stinosko what OS are you on? I double checked the file format and it is LF
indeed
@makaveli10 It was on Ubuntu 22.04 LTS in Windows subsystem for Linux
My theory so far:
I first git cloned the repo in windows to start an docker instance with the docker files. I had some issue so i copied the files into WSL as that was faster than git clone the repo again. Maybe by trying to run the repo in windows the file got changed into CRLF
🤷♂️