This commit is contained in:
Mayel de Borniol 2024-02-16 23:34:42 +00:00
parent 600937059d
commit e9e8090abe
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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",