From 7ce0b26e4f6baf65a8adbd277cebefcdb0cf53cb Mon Sep 17 00:00:00 2001 From: Conrad Hoffmann Date: Thu, 31 Aug 2023 12:22:41 +0200 Subject: [PATCH] Switch to Alpine-based Docker image --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c113586..41446f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ ARG ARCH="amd64" ARG OS="linux" -FROM debian:bullseye-slim -#FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest -RUN apt-get update && apt-get install -y freeipmi +FROM alpine:3 +RUN apk --no-cache add freeipmi LABEL maintainer="The Prometheus Authors " ARG ARCH="amd64"