budibase/scripts/build-single-image.sh

5 lines
219 B
Bash
Raw Normal View History

2023-10-02 17:50:02 +02:00
#!/bin/bash
2023-10-06 14:32:17 +02:00
yarn build --scope @budibase/server --scope @budibase/worker
2023-10-20 17:23:16 +02:00
version=$(./scripts/getCurrentVersion.sh)
2023-10-23 13:53:18 +02:00
docker build -f hosting/single/Dockerfile.v2 -t budibase:latest --build-arg BUDIBASE_VERSION=$version .