7 lines
144 B
Docker
7 lines
144 B
Docker
|
FROM ubuntu:16.04
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y --no-install-recommends \
|
||
|
gcc libc6-dev ca-certificates
|
||
|
ENV PATH=$PATH:/rust/bin
|
||
|
|