blob: bfa2b170adea0585e5ef3066d8eefe60360375cf (
plain)
1
2
3
4
5
6
7
8
9
|
FROM ubuntu:19.04
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
gcc libc6-dev ca-certificates linux-headers-generic
RUN apt search linux-headers
RUN ls /usr/src
ENV PATH=$PATH:/rust/bin
|