Skip to content

Commit

Permalink
fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
mayel committed Feb 16, 2024
1 parent 6009370 commit e9e8090
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,13 @@ RUN if [ "$FORKS_TO_COPY_PATH" = "data/null" ] ; then MIX_ENV=prod mix deps.comp

# add flavour's git deps (typically Bonfire extensions)
COPY data/current_flavour/config/deps*git ./config/
# fetch
RUN mix deps.get --only prod

# add extra deps (specified by the core app)
RUN cp -rfL deps/bonfire/deps.* ./config/

# fetch them because we need them for the non-configurable paths in config/deps_hooks.js
# fetch (we need extensions for the non-configurable paths in config/deps_hooks.js)
RUN mix deps.get --only prod
# RUN HEX_HTTP_CONCURRENCY=1 HEX_HTTP_TIMEOUT=120 mix deps.get --only prod

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ defmodule Bonfire.Umbrella.MixProject do
@default_flavour "classic"
@config [
# note that the flavour will automatically be added where the dash appears
version: "0.9.8-beta.34",
version: "0.9.8-beta.35",
elixir: ">= #{System.get_env("ELIXIR_VERSION", "1.13.4")}",
default_flavour: @default_flavour,
logo: "assets/static/images/bonfire-icon.png",
Expand Down

0 comments on commit e9e8090

Please sign in to comment.