I have followed the steps to depeloy my flask app to heroku. This includes setting up the Procfile and creating a requirements.txt file with the various add-ons used.
My app is called "app". Here is what I have in the Procfile:
web: gunicorn app:app
Now, After deploying to heroku using git, it looks like my app is crashed when I access the website on which it is deployed, even though the deployment process was successful. Here is the heroku log below. Can you help me find out what is possibly causing this problem?
2022-09-25T03:05:56.663885+00:00 app[web.1]: import PunkerService
2022-09-25T03:05:56.663886+00:00 app[web.1]: File "/app/PunkerService.py", line 9, in <module>
2022-09-25T03:05:56.663886+00:00 app[web.1]: PunkerDLL = ctypes.CDLL("C:\FanApp_Flask\Lib\PunkerDllCat.dll")
2022-09-25T03:05:56.663887+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.10/ctypes/__init__.py", line 374, in __init__
2022-09-25T03:05:56.663887+00:00 app[web.1]: self._handle = _dlopen(self._name, mode)
2022-09-25T03:05:56.663887+00:00 app[web.1]: OSError: C:\FanApp_Flask\Lib\PunkerDllCat.dll: cannot open shared object file: No such file or directory
Thanks!