2023-07-23 19:58:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -Eeuxo pipefail
|
|
|
|
|
2023-07-23 20:33:08 +00:00
|
|
|
# unclear why these are needed as they _should_ already be done in the docker image build...
|
|
|
|
mix local.hex --force
|
|
|
|
mix local.rebar --force
|
2023-07-23 19:58:54 +00:00
|
|
|
mix deps.get
|
|
|
|
mix compile
|
|
|
|
mix pleroma.frontend install pleroma-fe --ref stable
|
|
|
|
mix pleroma.frontend install admin-fe --ref stable
|