We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
echo "# Issue: `build_luisa.sh` Not Found During Docker Build
While building the Docker image, the script `build_luisa.sh` fails with the error:
``` /bin/sh: 1: ./build_luisa.sh: not found ```
Run the following Docker build command:
```bash docker build -t genesis -f docker/Dockerfile docker ```
The error occurs during the execution of the following lines in the Dockerfile:
```dockerfile WORKDIR /workspace RUN git clone https://github.com/Genesis-Embodied-AI/Genesis.git && \ cd Genesis && \ git submodule update --init --recursive COPY build_luisa.sh /workspace/build_luisa.sh RUN chmod +x ./build_luisa.sh && ./build_luisa.sh ${PYTHON_VERSION} ```
The script `build_luisa.sh` should be executed without any errors.
The Docker build fails with the error `/bin/sh: 1: ./build_luisa.sh: not found`.
To debug the issue, the following steps were added to the Dockerfile:
```dockerfile RUN pwd && ls -l /workspace && ls -l /workspace/build_luisa.sh && \ echo "File location: $(realpath ./build_luisa.sh)" && \ chmod +x ./build_luisa.sh && ./build_luisa.sh ${PYTHON_VERSION} ```
These debug commands show that:
error.md
The text was updated successfully, but these errors were encountered:
If the script is present in /workspace, could you check if you can run:
/workspace
RUN chmod +x /workspace/build_luisa.sh && /workspace/build_luisa.sh ${PYTHON_VERSION}
Sorry, something went wrong.
You can fix it by changing CRLF line editing to LF line editing in VSCode. Please, check #397
No branches or pull requests
echo "# Issue: `build_luisa.sh` Not Found During Docker Build
Description
While building the Docker image, the script `build_luisa.sh` fails with the error:
```
/bin/sh: 1: ./build_luisa.sh: not found
```
Steps to Reproduce
Run the following Docker build command:
```bash
docker build -t genesis -f docker/Dockerfile docker
```
The error occurs during the execution of the following lines in the Dockerfile:
```dockerfile
WORKDIR /workspace
RUN git clone https://github.com/Genesis-Embodied-AI/Genesis.git && \
cd Genesis && \
git submodule update --init --recursive
COPY build_luisa.sh /workspace/build_luisa.sh
RUN chmod +x ./build_luisa.sh && ./build_luisa.sh ${PYTHON_VERSION}
```
Expected Behavior
The script `build_luisa.sh` should be executed without any errors.
Observed Behavior
The Docker build fails with the error `/bin/sh: 1: ./build_luisa.sh: not found`.
Debugging Steps Taken
To debug the issue, the following steps were added to the Dockerfile:
```dockerfile
RUN pwd && ls -l /workspace && ls -l /workspace/build_luisa.sh && \
echo "File location: $(realpath ./build_luisa.sh)" && \
chmod +x ./build_luisa.sh && ./build_luisa.sh ${PYTHON_VERSION}
```
These debug commands show that:
Additional Context
error.md
The text was updated successfully, but these errors were encountered: