mirror of
https://github.com/Budibase/budibase.git
synced 2026-08-29 03:11:33 +08:00
11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "$0")/.."
|
|
yarn build:apps
|
|
|
|
docker build \
|
|
-f hosting/single/Dockerfile \
|
|
-t budibase:latest \
|
|
--build-arg BUDIBASE_VERSION=0.0.0+local \
|
|
--build-arg TARGETBUILD=single \
|
|
.
|