squalou commented on issue #15286:
URL: https://github.com/apache/superset/issues/15286#issuecomment-865206284


   Hi,
   I have a similar setup, here's what I did
   
   Dockerfile :
   
   ```Dockerfile
   FROM .......superset parent image you want
   
   ADD superset_config.py  /app/pythonpath/
   
   ```
   
   and the file `superset_config.py` itself contains your configuration
   
   
   
   ```python
   FEATURE_FLAGS = {
       "ENABLE_TEMPLATE_PROCESSING": True
   }
   
   ```
   
   less flexible than a mounted volume but works in a serverless environment.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to