mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-03 06:51:00 +02:00
Squashed 'ai-context/trustgraph-templates/' content from commit 42a5fd1b
git-subtree-dir: ai-context/trustgraph-templates git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
This commit is contained in:
commit
74cc8a4685
1216 changed files with 116347 additions and 0 deletions
22
Makefile
Normal file
22
Makefile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
PACKAGE_VERSION=0.0.0
|
||||
VERSION=0.0.0
|
||||
|
||||
all: container
|
||||
|
||||
package: update-package-versions
|
||||
python3 -m build --sdist --outdir pkgs
|
||||
|
||||
update-package-versions:
|
||||
echo __version__ = \"${PACKAGE_VERSION}\" > trustgraph_configurator/version.py
|
||||
|
||||
CONTAINER=localhost/config-svc
|
||||
DOCKER=podman
|
||||
|
||||
container:
|
||||
${DOCKER} build -f Containerfile -t ${CONTAINER}:${VERSION} \
|
||||
--format docker
|
||||
|
||||
# On port 8081
|
||||
run-container:
|
||||
${DOCKER} run -i -t -p 8081:8080 ${CONTAINER}:${VERSION}
|
||||
Loading…
Add table
Add a link
Reference in a new issue