Skip to content

Commit

Permalink
Install build essential since most rust dependencies depends on it...
Browse files Browse the repository at this point in the history
  • Loading branch information
Tibo Delor committed Aug 31, 2016
1 parent 906a1d4 commit 4933260
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 1.10.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:jessie
MAINTAINER Tibo Delor "delor.thibault@gmail.com"

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -qqy curl ca-certificates \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -qqy curl ca-certificates build-essential \
&& rm -rf /var/lib/apt/lists/* \
&& curl -sSkLO https://static.rust-lang.org/dist/rust-1.10.0-x86_64-unknown-linux-gnu.tar.gz \
&& curl -sSkL https://static.rust-lang.org/dist/rust-1.10.0-x86_64-unknown-linux-gnu.tar.gz.sha256 | sha256sum -c - \
Expand Down
2 changes: 1 addition & 1 deletion 1.11.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:jessie
MAINTAINER Tibo Delor "delor.thibault@gmail.com"

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -qqy curl ca-certificates \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -qqy curl ca-certificates build-essential \
&& rm -rf /var/lib/apt/lists/* \
&& curl -sSkLO https://static.rust-lang.org/dist/rust-1.11.0-x86_64-unknown-linux-gnu.tar.gz \
&& curl -sSkL https://static.rust-lang.org/dist/rust-1.11.0-x86_64-unknown-linux-gnu.tar.gz.sha256 | sha256sum -c - \
Expand Down

0 comments on commit 4933260

Please sign in to comment.