Skip to content

Commit

Permalink
Fixed Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
catttam committed Sep 9, 2024
1 parent 2678860 commit 4a7dd35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM bitnami/python

# Install goaccess tool
RUN apt-get update && \
apt-get install vim -y
apt-get install vim libncursesw5-dev -y

# Install aws-cli
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
Expand All @@ -13,7 +13,7 @@ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2
# Verify the installation
RUN aws --version

RUN wget https://tar.goaccess.io/goaccess-1.5.5.tar.gz && \
RUN curl "https://tar.goaccess.io/goaccess-1.5.5.tar.gz" -o "goaccess-1.5.5.tar.gz" && \
tar -xzvf goaccess-1.5.5.tar.gz && \
cd goaccess-1.5.5/ && \
./configure --enable-utf8 && \
Expand Down

0 comments on commit 4a7dd35

Please sign in to comment.