From 4d3e19dd7c6e3155db854f9db44379939f725668 Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Wed, 23 Aug 2023 13:24:22 +1000 Subject: [PATCH] rm --- docker/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7cda96d..bdeabd1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -213,7 +213,8 @@ RUN wget -q -O gotop.deb https://github.com/cjbassi/gotop/releases/download/3.0. # Install gping RUN wget -q -O gping.tar.gz https://github.com/orf/gping/releases/download/gping-v1.14.0/gping-Linux-x86_64.tar.gz && \ tar xf gping.tar.gz gping && \ - install gping /usr/local/bin + install gping /usr/local/bin && \ + rm gping.tar.gz # Install i3lock RUN apt-get update -qq && \ @@ -245,7 +246,9 @@ RUN apt-get update -qq && \ ./install-i3lock-color.sh # Install i3 extras -RUN pipx install i3-resurrect==1.4.2 && \ +RUN apt-get update -qq && \ + apt-get install -qq python3-i3ipc && \ + pipx install i3-resurrect==1.4.2 && \ pipx install i3altlayout==1.1.1 && \ pipx install i3-workspace-names-daemon && \ sed -i s/'?'/''/ ~/.local/pipx/venvs/i3-workspace-names-daemon/lib/python3.11/site-packages/i3_workspace_names_daemon.py && \