mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 01:06:25 +02:00
* Imrpove demo experience - generate envoy.yaml using jinja2 template * add todo * add config file
9 lines
291 B
Docker
9 lines
291 B
Docker
FROM python:3-slim as config-generator
|
|
WORKDIR /usr/src/app
|
|
RUN pip install jinja2
|
|
COPY config_generator/config_generator.py .
|
|
COPY envoyfilter/envoy.template.yaml .
|
|
COPY envoyfilter/katanemo-config.yaml .
|
|
# RUN python config_generator.py > envoy.yaml
|
|
|
|
CMD ["python", "config_generator.py"]
|