This commit is contained in:
Adil Hafeez 2025-05-15 12:18:58 -07:00
parent 55d451190f
commit 3970b6ab03
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
2 changed files with 4 additions and 1 deletions

View file

@ -29,4 +29,4 @@ RUN pip install requests
RUN touch /var/log/envoy.log
# ENTRYPOINT ["sh","-c", "python config_generator.py && envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && envoy -c /etc/envoy.env_sub.yaml --log-level trace 2>&1 | tee /var/log/envoy.log"]
ENTRYPOINT ["sh","-c", "python config_generator.py && envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && envoy -c /etc/envoy.env_sub.yaml --component-log-level wasm:debug 2>&1 | tee /var/log/envoy.log"]
ENTRYPOINT ["sh","-c", "ls -l /etc/envoy/proxy-wasm-plugins/*"]

View file

@ -1,6 +1,9 @@
#!/bin/bash
set -eu
echo "docker images"
docker images
# for demo in currency_exchange hr_agent
for demo in samples_python/currency_exchange use_cases/preference_based_routing
do