From c710f821be43ab2c904232c14c88c1d9978ba464 Mon Sep 17 00:00:00 2001 From: Hu3rror <19755727+hu3rror@users.noreply.github.com> Date: Tue, 21 May 2024 17:39:34 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20(Dockerfile.memogram):=20add=20t?= =?UTF-8?q?mux=20to=20the=20container=20for=20additional=20terminal=20mult?= =?UTF-8?q?iplexing=20capabilities=20=20=20=E2=AC=86=EF=B8=8F=20(Dockerfil?= =?UTF-8?q?e.memogram):=20update=20the=20Dockerfile=20to=20include=20tmux?= =?UTF-8?q?=20installation=20before=20downloading=20and=20extracting=20ove?= =?UTF-8?q?rmind?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile.memogram | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.memogram b/Dockerfile.memogram index 330a54a..c9f9f78 100644 --- a/Dockerfile.memogram +++ b/Dockerfile.memogram @@ -25,7 +25,8 @@ COPY etc/memogram.env /usr/local/memos/.env # Add overmind ENV OVERMIND_VERSION=2.5.1 -RUN wget https://github.com/DarthSim/overmind/releases/download/v${OVERMIND_VERSION}/overmind-v${OVERMIND_VERSION}-linux-${TARGETARCH}.gz && \ +RUN apk add --no-cache tmux && \ + wget https://github.com/DarthSim/overmind/releases/download/v${OVERMIND_VERSION}/overmind-v${OVERMIND_VERSION}-linux-${TARGETARCH}.gz && \ gzip -d overmind-v${OVERMIND_VERSION}-linux-${TARGETARCH}.gz && \ mv overmind-v${OVERMIND_VERSION}-linux-${TARGETARCH} overmind && \ chown root:root ./overmind && \