23 lines
426 B
Docker
23 lines
426 B
Docker
FROM quickwit/quickwit
|
|
|
|
COPY *.yaml /quickwit/
|
|
COPY entrypoint.sh /quickwit/
|
|
COPY consumer.py /quickwit/
|
|
COPY requirements.txt /quickwit/
|
|
COPY msgcodec /quickwit/msgcodec
|
|
WORKDIR /quickwit
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install python3 python3-pip -y
|
|
RUN apt-get clean
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY env.default .env
|
|
RUN source .env
|
|
|
|
ENV filter="true" \
|
|
encrypted="false"
|
|
|
|
EXPOSE 7280
|
|
|
|
ENTRYPOINT ./entrypoint.sh
|