mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-12 02:24:15 +00:00
b8c7aa991d
* WIP * WIP * WIP * WIP * add socket handler for spiff events * standardize attributes of event log * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Get tests to pass * Getting pyl to pass * Moving to regular socket * Try/catch * WIP * Getting dockerized * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Its broken * WIP * WIP * WIP * Update event-stream/elasticsearch.py Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update event-stream/elasticsearch.py Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update event-stream/elasticsearch.py Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Fix tests --------- Co-authored-by: Elizabeth Esswein <elizabeth.esswein@gmail.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Kevin Burnett <18027+burnettk@users.noreply.github.com>
14 lines
237 B
Docker
14 lines
237 B
Docker
FROM python:3.12.1-slim-bookworm
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y -q \
|
|
curl \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY elasticsearch.py elasticsearch.py
|
|
|
|
CMD ["python", "elasticsearch.py"]
|