Add Dockerfile

pull/4/head
Clément FRÉVILLE 2 years ago
parent 3f4588f44a
commit 1126133fd3

@ -0,0 +1,11 @@
.git
github
.vscode
.idea
build
cmake-build-debug
.clang-format
.drone.yml
.dockerignore
Dockerfile

@ -0,0 +1,16 @@
FROM alpine:3.18 as builder
WORKDIR /app
RUN apk add --no-cache build-base git zeromq-dev cmake \
&& apk add --no-cache cppzmq --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
COPY . .
RUN cmake -B build -S . && cmake --build build --parallel $(nproc)
FROM alpine:3.18 as runner
RUN apk add --no-cache libc++ zeromq
COPY --from=builder /app/build/planificador /usr/local/bin/planificador
ENTRYPOINT ["/usr/local/bin/planificador"]
Loading…
Cancel
Save