11 lines
301 B
Bash
Executable file
11 lines
301 B
Bash
Executable file
#!/bin/bash
|
|
set -Eeuxo pipefail
|
|
|
|
# unclear why these are needed as they _should_ already be done in the docker image build...
|
|
mix local.hex --force
|
|
mix local.rebar --force
|
|
mix deps.get
|
|
mix compile
|
|
mix pleroma.frontend install pleroma-fe --ref stable
|
|
mix pleroma.frontend install admin-fe --ref stable
|