|
|
@@ -1,7 +1,7 @@
|
|
|
RUN apt-get update -y
|
|
|
-RUN apt-get install wget gcc git libgc1 libgc-dev -y
|
|
|
-RUN wget http://git.txlyre.website/txlyre/qic/raw/master/qic.c
|
|
|
-RUN gcc qic.c -o /usr/bin/qic
|
|
|
-RUN rm qic.c
|
|
|
-RUN git clone https://git.txlyre.website/txlyre/libqirt /usr/share/libqirt
|
|
|
+RUN apt-get install wget gcc -y
|
|
|
+RUN wget https://files.txlyre.website/d/software/qilang/latest_linux_x86_64/qic -O /usr/bin/qic && chmod +x /usr/bin/qic
|
|
|
+RUN mkdir /usr/share/libqirt
|
|
|
+RUN wget https://files.txlyre.website/d/software/qilang/latest_linux_x86_64/qirt.h -O /usr/share/libqirt/qirt.h
|
|
|
+RUN wget https://files.txlyre.website/d/software/qilang/latest_linux_x86_64/libqirt.so -O /usr/share/libqirt/libqirt.so
|
|
|
RUN apt-get remove wget git -y
|