mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 04:13:36 +08:00
12 lines
354 B
Bash
Executable File
12 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
|