This commit is contained in:
Your Name
2025-04-28 23:00:41 +12:00
parent 374ec773b8
commit 148b590035
3 changed files with 24 additions and 7 deletions

View File

@@ -6,13 +6,17 @@ RUN apk add --no-cache \
git \
ncurses-dev \
pkgconfig \
tbb-dev \
xxhash-dev
libtbb-dev \
xxhash-dev \
bash
WORKDIR /app
COPY . .
COPY --chmod=755 docker/dropshell_alpine_builder/_create_dropshell.sh /scripts/
RUN rm -rf build
CMD ["/bin/bash","-c","cmake .. -DCMAKE_BUILD_TYPE=Release && make -j4 && cp build/dropshell /output/ && chmod a+rwx /output/dropshell"]
# dropshell makesafecmd "cmake .. -DCMAKE_BUILD_TYPE=Release && make -j4 && cp /app/build/dropshell /output/ && chmod a+rwx /output/dropshell"
CMD ["/bin/bash","/scripts/_create_dropshell.sh"]