• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1FROM ubuntu:22.04
2RUN apt-get update
3RUN apt-get install -y --no-install-recommends \
4  gcc libc6-dev ca-certificates linux-headers-generic
5
6RUN apt search linux-headers
7RUN ls /usr/src
8
9ENV PATH=$PATH:/rust/bin
10