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 e3b875d commit 9dd8d6b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ 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 \
tar -xzvf goaccess-1.5.5.tar.gz
cd goaccess-1.5.5/
./configure --enable-utf8
make
make install
RUN wget https://tar.goaccess.io/goaccess-1.5.5.tar.gz && \
tar -xzvf goaccess-1.5.5.tar.gz && \
cd goaccess-1.5.5/ && \
./configure --enable-utf8 && \
make && \
make install && \

# Install python dependencies
COPY requirements.txt /tmp/
Expand Down

0 comments on commit 9dd8d6b

Please sign in to comment.