mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
chore: add script to build a local version of a service
This commit is contained in:
18
bundle.sh
Executable file
18
bundle.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
SERVICE=$1 && shift 1
|
||||
|
||||
if [ "$SERVICE" == "" ]; then
|
||||
echo "Please input a service name as parameter"
|
||||
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Bundling and building local docker image for service: $SERVICE"
|
||||
|
||||
rm -rf $TMPDIR/bundle-$SERVICE/
|
||||
mkdir -p $TMPDIR/bundle-$SERVICE
|
||||
|
||||
yarn workspace @standardnotes/$SERVICE-server bundle --no-compress --output-directory $TMPDIR/bundle-$SERVICE
|
||||
|
||||
docker build $TMPDIR/bundle-$SERVICE -f $TMPDIR/bundle-$SERVICE/packages/$SERVICE/Dockerfile -t standardnotes/$SERVICE:local
|
||||
Reference in New Issue
Block a user