mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 08:46:24 +02:00
9 lines
299 B
Docker
9 lines
299 B
Docker
FROM python:3-slim as config-generator
|
|
WORKDIR /usr/src/app
|
|
COPY config_generator/requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
COPY config_generator/config_generator.py .
|
|
COPY envoyfilter/envoy.template.yaml .
|
|
COPY envoyfilter/katanemo-config.yaml .
|
|
|
|
CMD ["python", "config_generator.py"]
|