forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: sule <sule.sl@antgroup.com>
- Loading branch information
Showing
10 changed files
with
1,104 additions
and
42 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,16 @@ | ||
ARG DOCKER_IMAGE_BASE | ||
FROM $DOCKER_IMAGE_BASE | ||
|
||
WORKDIR /rayci | ||
|
||
RUN <<EOF | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
chmod 755 /usr/lib/sudo/sudoers.so | ||
apt-get update && apt-get install -y --reinstall sudo | ||
|
||
BUILD=1 DL=1 ./ci/env/install-dependencies.sh | ||
|
||
EOF |
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
Oops, something went wrong.