diff --git a/pkg/universe.dagger.io/examples/changelog.com/elixir/mix/mix.cue b/pkg/universe.dagger.io/examples/changelog.com/elixir/mix/mix.cue index bd0b4358..9216ba0d 100644 --- a/pkg/universe.dagger.io/examples/changelog.com/elixir/mix/mix.cue +++ b/pkg/universe.dagger.io/examples/changelog.com/elixir/mix/mix.cue @@ -16,7 +16,7 @@ import ( } container: command: { name: "sh" - flags: "-c": "mix do deps.compile, compile" + flags: "-c": "mix do deps.get" } } diff --git a/pkg/universe.dagger.io/examples/changelog.com/main.cue b/pkg/universe.dagger.io/examples/changelog.com/main.cue index bdcb4cfe..234e915b 100644 --- a/pkg/universe.dagger.io/examples/changelog.com/main.cue +++ b/pkg/universe.dagger.io/examples/changelog.com/main.cue @@ -55,10 +55,10 @@ dagger.#Plan & { } // Assemble base image - _pull: docker.#Pull & { + base: docker.#Pull & { source: inputs.params.app.image } - image: _pull.output + image: base.output // Download Elixir dependencies deps: mix.#Get & {