From 3475a29a1baf5a9280a7f4dacc45e7d06afe1fca Mon Sep 17 00:00:00 2001 From: Christopher Date: Fri, 19 Jul 2024 13:06:44 -0500 Subject: [PATCH] chore: Update Dockerfile to use Alpine instead of Debian and install btop dependencies with apk --- btop/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/btop/Dockerfile b/btop/Dockerfile index 296160c..6781db0 100644 --- a/btop/Dockerfile +++ b/btop/Dockerfile @@ -1,14 +1,13 @@ -FROM debian:latest +FROM alpine:latest # Install required packages for building gotty and running btop -RUN apt-get update && apt-get install -y \ +RUN apk add --no-cache \ btop \ procps \ curl \ iproute2 \ git \ - golang-go \ - && apt-get clean + go # Clone, build, and install gotty RUN git clone https://github.com/sorenisanerd/gotty.git /tmp/gotty && \