7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-07 08:30:48 +00:00

feat: skip explicit openedx-dev image building in tutor dev launch

I have no idea why we decided to kickstart a separate build. The image will be
built anyway at the next step because we run `docker compose up --build` in
`tutor dev start`.

The build step was introduced in this PR: https://github.com/overhangio/tutor/pull/627
This commit is contained in:
Régis Behmo 2022-12-13 09:05:13 +01:00 committed by Régis Behmo
parent c70a6a5e80
commit 146ec62a0a
2 changed files with 1 additions and 3 deletions

View File

@ -0,0 +1 @@
- [Improvement] Skip unnecessary image building in development. This should make `tutor dev launch` slightly faster. (by @regisb)

View File

@ -98,9 +98,6 @@ Tutor may not work if Docker is configured with < 4 GB RAM. Please follow instru
click.echo(fmt.title("Docker image updates"))
context.invoke(compose.dc_command, command="pull")
click.echo(fmt.title("Building Docker image for LMS and CMS development"))
context.invoke(compose.dc_command, command="build", args=["lms"])
click.echo(fmt.title("Starting the platform in detached mode"))
context.invoke(compose.start, detach=True)