mirror of
https://github.com/katanemo/plano.git
synced 2026-04-30 19:36:34 +02:00
11 lines
182 B
Docker
11 lines
182 B
Docker
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"]
|