mbpfan/Dockerfile

14 lines
338 B
Text
Raw Permalink Normal View History

2024-01-15 22:21:57 +00:00
FROM debian:latest as build
2023-07-19 12:55:20 +00:00
WORKDIR /app
2024-03-28 13:47:46 +00:00
COPY ./mbpfan .
COPY ./Makefile .
RUN apt update && \
apt install build-essential -y && \
make install
2023-07-19 12:55:20 +00:00
2024-01-15 22:21:57 +00:00
FROM gcr.io/distroless/base-debian12
2024-03-28 13:47:46 +00:00
WORKDIR /app
2023-07-19 12:55:20 +00:00
COPY --from=build /usr/sbin/mbpfan /usr/sbin/mbpfan
COPY --from=build /etc/mbpfan.conf /etc/mbpfan.conf
2024-01-15 22:21:57 +00:00
CMD ["/usr/sbin/mbpfan", "-f"]