From b5575319b7839692f2ca4ddc70c355b063fb6bf1 Mon Sep 17 00:00:00 2001 From: Chris Richardson Date: Mon, 11 Aug 2025 15:25:06 -0400 Subject: [PATCH] asd --- docker/Dockerfile | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 8fd14144..51833adb 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -50,36 +50,36 @@ RUN apt-get update \ RUN mkdir git && cd git \ && git clone https://github.com/stsp/nasm-segelf.git -# && git clone https://github.com/stsp/thunk_gen.git \ -# && git git clone https://github.com/alexfru/SmallerC.git \ -# && git clone https://github.com/stsp/djstub.git \ -# && git git clone https://github.com/stsp/dj64dev.git \ -# && git clone https://github.com/json-c/json-c.git \ -# && git clone https://github.com/munt/munt.git \ -# && git clone https://github.com/dosemu2/fdpp.git \ -# && git https://github.com/dosemu2/install-freedos.git \ -# && git clone https://github.com/dosemu2/comcom64.git \ -# && git clone https://github.com/dosemu2/dosemu2.git + && git clone https://github.com/stsp/thunk_gen.git \ + && git git clone https://github.com/alexfru/SmallerC.git \ + && git clone https://github.com/stsp/djstub.git \ + && git git clone https://github.com/stsp/dj64dev.git \ + && git clone https://github.com/json-c/json-c.git \ + && git clone https://github.com/munt/munt.git \ + && git clone https://github.com/dosemu2/fdpp.git \ + && git https://github.com/dosemu2/install-freedos.git \ + && git clone https://github.com/dosemu2/comcom64.git \ + && git clone https://github.com/dosemu2/dosemu2.git RUN cd git/nasm-segelf && ./configure && make && make install -RUN cd thunk_gen && ./configure && meson compile --verbose -C build && meson install -C build +RUN cd git/thunk_gen && ./configure && meson compile --verbose -C build && meson install -C build -RUN cd SmallerC && ./configure && make && make install +RUN cd git/SmallerC && ./configure && make && make install -RUN cd djstub && make && make install +RUN cd git/djstub && make && make install -RUN cd dj64dev && make && make install +RUN cd git/dj64dev && make && make install -RUN cd fdpp && ./configure && make && make install +RUN cd git/fdpp && ./configure && make && make install -RUN cd munt/mt32emu && cmake -DCMAKE_BUILD_TYPE:STRING=Release . && make && make install +RUN cd git/munt/mt32emu && cmake -DCMAKE_BUILD_TYPE:STRING=Release . && make && make install -RUN cd comcom64 && make && make install +RUN cd git/comcom64 && make && make install -RUN cd install-freedos && make install +RUN cd git/install-freedos && make install -RUN cd dosemu2 && ./default-configure && make && make install +RUN cd git/dosemu2 && ./default-configure && make && make install