Skip to content

Commit

Permalink
🔧 (Dockerfile.memogram): add tmux to the container for additional ter…
Browse files Browse the repository at this point in the history
…minal multiplexing capabilities

  ⬆️ (Dockerfile.memogram): update the Dockerfile to include tmux installation before downloading and extracting overmind
  • Loading branch information
hu3rror committed May 21, 2024
1 parent 6809bce commit c710f82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile.memogram
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit c710f82

Please sign in to comment.