-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add docker dev builder * update read me * add arm64 bazel pkg install * show current os arch * assign aarch64 to arm64 * fix typo * install bazel script remove download resources * add build instruction * dash for title blank line
- Loading branch information
Showing
3 changed files
with
52 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM ubuntu:22.04 | ||
RUN apt-get update | ||
RUN apt-get install -yq software-properties-common | ||
RUN add-apt-repository -y ppa:deadsnakes/ppa | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -yq wget gcc g++ openjdk-8-jdk maven python3.8 zlib1g-dev zip git pip | ||
RUN git clone https://github.com/ray-project/mobius.git | ||
RUN sh -c "bash mobius/scripts/install-bazel.sh" | ||
RUN python3 -m pip install virtualenv | ||
RUN python3 -m virtualenv -p python3 py3 | ||
RUN pip install pytest "protobuf<4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters