11 lines
354 B
Bash
Executable file
11 lines
354 B
Bash
Executable file
#! /bin/bash
|
|
|
|
cd src/frontend
|
|
docker build -t logspace/frontend_build -f build.Dockerfile .
|
|
cd ../backend
|
|
docker build -t logspace/backend_build -f build.Dockerfile .
|
|
|
|
cd ../../
|
|
VERSION=$(toml get --toml-path pyproject.toml tool.poetry.version)
|
|
docker build --build-arg VERSION=$VERSION -t ibiscp/langflow:$VERSION .
|
|
docker push ibiscp/langflow:$VERSION
|