Static files not found

#settings.py
STATIC_URL = ‘/static/’
STATIC_ROOT = os.path.join(BASE_DIR, ‘staticfiles’)
STATICFILES_DIRS = [os.path.join(BASE_DIR, ‘core/static’)]

#Dockerfile
RUN python manage.py collectstatic --noinput

#fly.toml
[[statics]]
guest_path = “/app/staticfiles”
url_prefix = “/static/”

Hi, i have static files (css, js, etc) in core/static (path from content root pycharm). but i get " 2023-03-23T16:28:16.878 app[1781949b460028] ams [info] Not Found: /static/img/favicon.png ". How do I solve?

Thanks

I solved by copying this repo GitHub - katiayn/katias-blog: Kátia's Blog: Django Girls Tutorial Blog deployed to Fly.io.