diff --git a/Dockerfile.release b/Dockerfile.release index 839adb358d..e9789e7d3a 100644 --- a/Dockerfile.release +++ b/Dockerfile.release @@ -147,8 +147,8 @@ RUN mkdir -p priv/repo/migrations RUN MIX_ENV=prod mix bonfire.extension.copy_migrations --force --to priv/repo/migrations # docs/guides -COPY --link LICENSE ./ COPY --link README.md ./ +COPY --link LICENSES LICENSES COPY --link docs docs RUN mkdir -p assets/static/images/ && cp deps/bonfire_ui_common/assets/static/images/bonfire-icon.png assets/static/images/bonfire-icon.png RUN ls -la ./ @@ -170,7 +170,7 @@ RUN MIX_ENV=prod CI=1 mix phx.digest RUN ls -la priv/static RUN ls -la priv/static/assets -RUN tar --exclude=*.env --exclude=.git --exclude=node_modules --exclude=priv/static/source.tar.gz --exclude=priv/static/data --exclude=*/*/assets/static/data --exclude=deps/*/cache -czvf priv/static/source.tar.gz lib deps apps extensions forks config docs priv/repo priv/static mix.exs mix.lock LICENSE || echo "Could not prepare code archive" +RUN tar --exclude=*.env --exclude=.git --exclude=node_modules --exclude=priv/static/source.tar.gz --exclude=priv/static/data --exclude=*/*/assets/static/data --exclude=deps/*/cache -czvf priv/static/source.tar.gz lib deps apps extensions forks config docs priv/repo priv/static mix.exs mix.lock LICENSES || echo "Could not prepare code archive" # build final OTP release RUN MIX_ENV=prod CI=1 mix release diff --git a/mix.exs b/mix.exs index 3a238c9c61..09952d505d 100644 --- a/mix.exs +++ b/mix.exs @@ -220,7 +220,7 @@ defmodule Bonfire.Umbrella.MixProject do # TODO: put these in ENV or an external writeable config file similar to deps.* @config [ # note that the flavour will automatically be added where the dash appears - version: "0.9.10-beta.176", + version: "0.9.10-beta.177", elixir: ">= #{System.get_env("ELIXIR_VERSION", "1.13.4")}", flavour: @flavour, default_flavour: @default_flavour,