Dockerfile 287 B

1234567
  1. RUN apt-get update -y
  2. RUN apt-get install wget gcc git libgc1 libgc-dev -y
  3. RUN wget https://git.txlyre.website/txlyre/qic/raw/master/qic.c
  4. RUN gcc qic.c -o /usr/bin/qic
  5. RUN rm qic.c
  6. RUN git clone https://git.txlyre.website/txlyre/libqirt /usr/share/libqirt
  7. RUN apt-get remove wget git -y