This commit is contained in:
Mayel de Borniol 2021-12-22 11:04:06 +13:00
parent 8b1f9d8f0a
commit 1b899e5579
2 changed files with 3 additions and 3 deletions

View file

@ -71,8 +71,8 @@ RUN npm install -g pnpm
# install JS deps
COPY assets/package.json assets/pnpm-lock.yaml assets/*.sh ./assets/
COPY priv/*.sh ./priv/
RUN chmod +x assets/install.sh && sh assets/install.sh
RUN chmod +x config/deps.js.sh && sh config/deps.js.sh
RUN chmod +x assets/*.sh && sh assets/install.sh
RUN chmod +x config/*.sh && chmod +x priv/*.sh && sh config/deps.js.sh
# Compile Bonfire extensions
RUN MIX_ENV=prod mix do deps.compile

View file

@ -3,7 +3,7 @@ defmodule Bonfire.MixProject do
use Mix.Project
@config [ # TODO: put these in ENV or an external writeable config file similar to deps.*
version: "0.1.0-beta.87", # note that the flavour will automatically be added where the dash appears
version: "0.1.0-beta.88", # note that the flavour will automatically be added where the dash appears
elixir: "~> 1.12",
default_flavour: "classic",
logo: "assets/static/images/bonfire-icon.png",