Skip to content

Commit

Permalink
fix issue with image name
Browse files Browse the repository at this point in the history
Resolves `Error: Image 'course-about-dev' could not be found`
  • Loading branch information
rediris committed Jun 21, 2024
1 parent b41dcfe commit 18d36aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutormfe/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ def get_mfe(mfe_name: str) -> MFE_ATTRS_TYPE:
@tutor_hooks.Actions.PLUGINS_LOADED.add()
def _mounted_mfe_image_management() -> None:
for mfe_name, _mfe_attrs in iter_mfes():
name = f"-{mfe_name}-dev"
tag = "{{ MFE_DOCKER_IMAGE_DEV_PREFIX }}" + name + ":{{ MFE_VERSION }}"
name = f"{mfe_name}-dev"
tag = "{{ MFE_DOCKER_IMAGE_DEV_PREFIX }}-" + name + ":{{ MFE_VERSION }}"
tutor_hooks.Filters.IMAGES_BUILD.add_item(
(
name,
Expand Down

0 comments on commit 18d36aa

Please sign in to comment.