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

[docker] Fix docker 'development' build failure #13289

Merged
merged 4 commits into from
Feb 25, 2021
Merged
Changes from 1 commit
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
Next Next commit
fixes permission denied errors
  • Loading branch information
ConeyLiu committed Jan 8, 2021
commit 776b5475c2d4c662808ba2e1c383a6b61c7d3716
4 changes: 2 additions & 2 deletions docker/development/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ FROM rayproject/ray-deps:latest
ADD ray.tar /ray
ADD git-rev /ray/git-rev
# Install dependencies needed to build ray
RUN apt-get update && apt-get install -y curl unzip cmake gcc && apt-get clean
RUN cd /ray && git init && ./ci/travis/install-bazel.sh --system
RUN sudo apt-get update && sudo apt-get install -y curl unzip cmake gcc && sudo apt-get clean
RUN sudo chown -R ray /ray && cd /ray && git init && ./ci/travis/install-bazel.sh --system
ConeyLiu marked this conversation as resolved.
Show resolved Hide resolved
ENV PATH=$PATH:/home/ray/bin
RUN echo 'build --remote_cache="https://storage.googleapis.com/ray-bazel-cache"' >> $HOME/.bazelrc
RUN echo 'build --remote_upload_local_results=false' >> $HOME/.bazelrc
Expand Down