Skip to content
Snippets Groups Projects
Commit a4f56cc1 authored by ZyanKLee's avatar ZyanKLee Committed by Rhys Arkins
Browse files

feat(docker): add cargo binary (#4199)

parent b8c6303d
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,15 @@ RUN curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-${
USER ubuntu
# Cargo
ENV RUST_BACKTRACE=1 \
PATH=/home/ubuntu/.cargo/bin:$PATH
RUN set -ex ;\
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain none -y ; \
rustup toolchain install 1.36.0
# Pipenv
ENV PATH="/home/ubuntu/.local/bin:$PATH"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment