cpuburn 0.1.3

cpuburn is a tool to push your CPU to 100%
1
2
3
4
5
6
7
8
FROM rust as builder
COPY . /build
WORKDIR /build
RUN cargo install cpuburn --root /usr

FROM debian
COPY --from=builder /usr/bin/cpuburn /bin
CMD ["cpuburn"]