mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-06 04:25:00 +00:00
14 lines
217 B
Bash
14 lines
217 B
Bash
|
#!/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
|