How can i Add My Custom Header and Footer in MFE?

Hello Everyone
I want to Change the Header and Footer in all MFE Pages.
So i have made customplugin.py in plugins and i did tutor config save then in my Dockerfile its visible that…
here i have created like this customplugin.py file

from tutor import hooks

hooks.Filters.ENV_PATCHES.add_item(
(
“mfe-dockerfile-post-npm-install-learning”,
“”"
RUN npm install ‘@edx/frontend-component-footer@git+MYGITLABTOKEN@gitlab.com/XXX-lms/frontend-component-footer.git#development-branch’ --force
“”"
)
)

Then i did config save and after this when i do tutor images build mfe / tutor images build mfe --no-cache it is giving me an errors

Can Anyone help me which is best option for this ?

It Was Changed and Working Properly