Skip to content
New issue

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

[BUG FIX] Fix for dockerfile error #332

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
software-properties-common \
git \
curl \
wget
wget \
dos2unix

RUN add-apt-repository ppa:ubuntu-toolchain-r/test && \
apt update && \
apt install -y --no-install-recommends \
Expand Down Expand Up @@ -48,8 +50,12 @@ 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}

COPY build_luisa.sh /workspace/
RUN ls -la /workspace && \
dos2unix /workspace/build_luisa.sh && \
chmod +x /workspace/build_luisa.sh && \
./build_luisa.sh ${PYTHON_VERSION}

# ===============================================================
# Stage 2: Runtime Environment
Expand Down