Skip to content

Commit

Permalink
Fix rust install in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
danstiner committed May 16, 2021
1 parent a42f5ff commit eb34f30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
unzip

RUN set -eux; \
url="https://sh.rustup.rs"; \
url="https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init"; \
curl -sSf -o rustup-init "$url"; \
sha256sum rustup-init; \
chmod +x rustup-init; \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN yum -y groupinstall 'Development Tools' && \
yum clean all

RUN set -eux; \
url="https://sh.rustup.rs"; \
url="https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init"; \
curl -sSf -o rustup-init "$url"; \
sha256sum rustup-init; \
chmod +x rustup-init; \
Expand Down

0 comments on commit eb34f30

Please sign in to comment.