-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac32b5f
commit 21f8a3a
Showing
2 changed files
with
15 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM ubuntu:20.04 | ||
|
||
RUN apt update && apt -y install \ | ||
build-essential \ | ||
clang \ | ||
curl \ | ||
python3-dev | ||
|
||
ENV RUSTUP_HOME=/opt/rust | ||
ENV CARGO_HOME=/opt/rust | ||
ENV PATH=$PATH:/opt/rust/bin | ||
|
||
COPY scripts/install_build_tools.sh . | ||
RUN bash install_build_tools.sh |
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