loader: update to remote 9a16c25

This commit is contained in:
2025-03-12 13:21:56 -07:00
parent de7ae71455
commit e955ad7b91
28 changed files with 895 additions and 564 deletions

View File

@@ -1,16 +1,18 @@
FROM debian:bookworm AS deps
RUN apt-get update -qq && apt-get install -qq -y --no-install-recommends build-essential
RUN apt-get update -qq && apt-get install -qq -y --no-install-recommends build-essential cmake
FROM deps AS build
ADD . /workspace
ADD src /workspace/src
ADD lib /workspace/lib
ADD CMakeLists.txt /workspace/
WORKDIR /workspace
RUN make loader
RUN mkdir build && cd build && cmake .. && make
FROM scratch AS export
COPY --from=build /workspace/loader /
COPY --from=build /workspace/build/alchitry_loader /