I got Dockerfile to build image for python application.
I got entrypoint.sh script that run uwsgi server.
Then there is a deployment yaml to run this image.
I created helm chart for that so in deployment.yaml I got
spec: containers: command: {{ .Values.api.command_to_run }}
In values.yaml I got: command_to_run: "[/bin/sh -c /app/entrypoint-prod.sh]"
How to pass such from values.yaml file