Skip to content

Commit

Permalink
fix marmot install; add less
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerGillson committed Oct 5, 2023
1 parent b8c1312 commit 6322198
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ ARG BASE
FROM $BASE

# Install marmot
RUN curl -sL https://github.com/maxpert/marmot/releases/download/v0.8.6/marmot-v0.8.6-linux-amd64-static.tar.gz | tar -zxv marmot && \
install marmot -o root -g root -m 755 /usr/local/bin/ && \
RUN mkdir -p /opt/spectrocloud/bin && \
curl -sL https://github.com/maxpert/marmot/releases/download/v0.8.6/marmot-v0.8.6-linux-amd64-static.tar.gz | tar -zxv marmot && \
install marmot -o root -g root -m 755 /opt/spectrocloud/bin/ && \
rm -f marmot

# Install sqlite
RUN apt update && apt install -y sqlite3
RUN apt update && apt install -y sqlite3 less

0 comments on commit 6322198

Please sign in to comment.