mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
14 lines
No EOL
217 B
Bash
Executable file
Vendored
14 lines
No EOL
217 B
Bash
Executable file
Vendored
#!/bin/bash
|
|
set -e
|
|
|
|
pushd ../../ui/ || exit
|
|
yarn build
|
|
popd || exit
|
|
|
|
pushd ../../server/ || exit
|
|
cargo build
|
|
popd || exit
|
|
|
|
sudo docker build ../../ -f Dockerfile -t lemmy-federation-test:latest
|
|
|
|
sudo docker-compose up |