diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..f8b90d3 --- /dev/null +++ b/dockerfile @@ -0,0 +1,14 @@ +FROM debian:bookworm-slim + + +WORKDIR /app + +RUN apt-get update && apt-get install -y \ + procps \ + iputils-ping \ + iproute2 \ + bash && rm -rf /var/lib/apt/lists/* + +COPY linux-sysmonitor/ . +RUN chmod +x health-check.sh +ENTRYPOINT [ "./health-check.sh" ] \ No newline at end of file