Results 11 comments of Plamen Ivanov

@patillacode @AntonOsika

@cor277 @oldmanjk It seems that the `entrypoint.sh` file may have a `CRLF` end of the file, which could be causing the issue. To resolve this, try changing it to `LF`....

Here is the replication of the error mentioned: Open the `entrypoint.sh` file in VSCode and click at the bottom on the editor ![image](https://github.com/gpt-engineer-org/gpt-engineer/assets/65338982/3fbcc094-7627-48ae-be9b-b29b1b320f48) and choose `CRLF` at the top. If...

Hey @viborc, I believe this can be closed. Just a note for everyone who wants to use the `.sh` file inside docker: the file's end of line must be `LF`.

@xjspace It is likely that this error occurred because "editable" was installed via "pip" using "sudo".

version `1.1.0-beta` has no such problem with FSTAB

> Hey. > > So as I said in the meeting I tried to build the container. Adding `cmake` at install doesn't fix the issue. > > I think the...

Hey @zigabrencic , I believe I may be able to locate the issue. `tk tcl curl git` are installed in `/usr/bin/` since they are dpkg packages. It is necessary to...

Here are the files. In the `pyproject.toml` I only added `langchain-community ="0.2.0"` and in `Dockerfile` - `COPY --from=builder /usr/bin /usr/bin` Dockerifle ```bash # Stage 1: Builder stage FROM python:3.11-slim AS...