-
My application relies on some data via smb share. or is there any other workaround? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For this scenario I'd suggest using a custom Entrypoint script to handle any of the pre-startup configuration. We have an example of what this looks like here: https://github.com/baronfel/sdk-container-demo/tree/main/src%2Fcustom-entrypoint In general, you'd use the MSBuild items you mentioned for small adjustments to the applications startup arguments, and if you had specific infrastructure/startup logic of any real size then you'd switch to a custom Entrypoint script. |
Beta Was this translation helpful? Give feedback.
For this scenario I'd suggest using a custom Entrypoint script to handle any of the pre-startup configuration. We have an example of what this looks like here: https://github.com/baronfel/sdk-container-demo/tree/main/src%2Fcustom-entrypoint
In general, you'd use the MSBuild items you mentioned for small adjustments to the applications startup arguments, and if you had specific infrastructure/startup logic of any real size then you'd switch to a custom Entrypoint script.