This is an automated email from the ASF dual-hosted git repository.
zanelee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git
The following commit(s) were added to refs/heads/master by this push:
new d3413fa MNEMONIC-756: Enable rust build environment in ubuntu dev
docker
new 6395b5a Merge pull request #309 from yzz127/master
d3413fa is described below
commit d3413fa3ffe3a5c8e5740dba76b0edcd195917d8
Author: Yanhui Zhao <[email protected]>
AuthorDate: Wed Aug 24 21:21:35 2022 -0700
MNEMONIC-756: Enable rust build environment in ubuntu dev docker
---
docker/docker-Ubuntu/Dockerfile | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/docker/docker-Ubuntu/Dockerfile b/docker/docker-Ubuntu/Dockerfile
index fb7024e..e63b4b6 100644
--- a/docker/docker-Ubuntu/Dockerfile
+++ b/docker/docker-Ubuntu/Dockerfile
@@ -38,6 +38,10 @@ RUN cd /ws
RUN git clone https://github.com/redis/hiredis.git && \
cd hiredis && make && make install
+RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
+
+ENV PATH="/root/.cargo/bin:${PATH}"
+
RUN cd /ws
RUN git clone https://github.com/apache/mnemonic.git && \