blob: fa5439aac788b556d137be0801751b2b608a2c5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
ca-certificates \
curl \
libcurl4-openssl-dev \
libssh2-1
RUN curl -sf "https://raw.githubusercontent.com/japaric/rust-everywhere/master/install.sh" | \
bash -s -- --at /usr/bin --from japaric/xargo --for x86_64-unknown-linux-gnu --tag v0.1.13
|