Hi @allen_luna,
I follow the steps and works for me
I write the steps:
- Create a tutor plugin. (following this tutorial Creating a Tutor plugin — Tutor documentation)
- I use this configuration understanding that the override is only for authn MFE:
from tutor import hooks
hooks.Filters.ENV_PATCHES.add_items(
[
(
"mfe-dockerfile-post-npm-install-authn",
"""
RUN npm install '@edx/brand@git+https://github.com/allenluna/VXI_Brand-OpenEdx.git'
"""
),
]
)
- Enable the plugin
tutor plugins enable myplugin
- Save the configuration
tutor config save
- Build the image
tutor images build mfe
- Start my environment
tutor <dev/local> start