whitecatboard / Lua-RTOS-ESP32

Lua RTOS for ESP32
Other
1.18k stars 222 forks source link

Docker build crashes instantly #420

Open TotallyNotSethP opened 1 year ago

TotallyNotSethP commented 1 year ago

When I run docker build -t luartos:1.0.0 ., it gets to Step 10 then complains:

Step 10/15 : RUN /usr/bin/python -m pip install --user -r ~/esp-idf/requirements.txt
 ---> Running in bb6e9b3f780e
Could not open requirements file: [Errno 2] No such file or directory: '/home/builder/esp-idf/requirements.txt'
The command '/bin/sh -c /usr/bin/python -m pip install --user -r ~/esp-idf/requirements.txt' returned a non-zero code: 1

What's going on?

elsbiet commented 1 year ago

sad to say: i'm afraid, lua-rtos-esp32 is dead.

the0ne commented 1 year ago

@elsbiet Not sure your comment is any good. You could help instead. It's a community project so everyone should feel invited to help each other.

progerstar commented 1 year ago

You can change this line in the Dockerfile to RUN /bin/sh -c /usr/bin/python -m pip install --user pyserial future cryptography pyparsing

aplimg commented 1 year ago

@progerstar, thank you for the line change information of the Dockerfile. It works.