buildin' dropshell

This commit is contained in:
Your Name
2025-04-28 22:18:44 +12:00
parent ff43e4122a
commit 92f023f611
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
FROM alpine:latest
RUN apk add --no-cache \
build-base \
cmake \
git \
ncurses-dev \
pkgconfig \
tbb-dev \
xxhash-dev
WORKDIR /app
COPY . .
RUN rm -rf build
CMD ["/bin/bash","-c","cmake .. -DCMAKE_BUILD_TYPE=Release && make -j4 && cp build/dropshell /output/ && chmod a+rwx /output/dropshell"]