mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-05 17:30:48 +08:00
8 lines
177 B
Bash
Executable File
8 lines
177 B
Bash
Executable File
#!/usr/bin/env bash
|
|
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
pushd $parent_path
|
|
|
|
docker build ../../backend -f ../backend.dockerfile -t ocgpt-backend
|
|
|
|
popd
|