buildin' dropshell
This commit is contained in:
18
docker/dropshell_alpine_builder/Dockerfile
Normal file
18
docker/dropshell_alpine_builder/Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user