skip to Main Content

Hi I am completely new to docker and run into the dreaded

Docker usr/bin/env: ‘bashr’: No such file or directory issue.

I understand there are number of answers posted here but none of them were able to help me as I think I need bit more insight into what script is causing this issue so that I can change the file format to UNIX from DOS.

I am unable to start airflow webserver because of this issue but what is the underlying script that is causing this issue?
could it be my entrypoint.sh script? I have tried to replace this file but to no avail.
Please help?

2

Answers


  1. Chosen as BEST ANSWER

    After many days of trawling through multiple sources online, I finally managed to run the whole thing in WSL2 Ubuntu system on my Windows machine. Now that it is up an running to me WSL seems like a godsend to side step problems like this!


  2. Have you tried using dos2unix on the offending file? that’ll fix the Windows encoding https://dos2unix.sourceforge.io/

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search