mirror of
https://github.com/katanemo/plano.git
synced 2026-05-15 11:02:39 +02:00
12 lines
182 B
Text
12 lines
182 B
Text
|
|
FROM python:3.12-slim as arch
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
RUN pip install requests
|
||
|
|
COPY stream_traces.py .
|
||
|
|
|
||
|
|
RUN mkdir -p /var/log
|
||
|
|
RUN touch /var/log/envoy.log
|
||
|
|
|
||
|
|
CMD ["python", "stream_traces.py"]
|