mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 01:06:25 +02:00
10 lines
291 B
Text
10 lines
291 B
Text
|
|
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"]
|