logutil 0.10.1

log Util is a Rust-based tool designed to help you monitor and analyze Nginx access logs in real-time.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Define versions used to select image versions
# (ARGs declared before FROM can't be used outside of FROMs)
FROM debian:bullseye-slim

ENV CARGO_NET_GIT_FETCH_WITH_CLI=true

RUN apt-get update && apt install curl build-essential gcc libclang-dev make openssl libssl-dev git -y

RUN curl https://sh.rustup.rs -sSf | bash -s -- -y

RUN echo 'source $HOME/.cargo/env' >> $HOME/.bashrc
ENV PATH="/root/.cargo/bin:${PATH}"

WORKDIR /code
ENTRYPOINT [ "" ]