Initial commit

This commit is contained in:
2025-04-14 17:01:24 +00:00
commit a9293a6595
38 changed files with 3692 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
echo "> Building ${IMG} for linux/amd64"
docker buildx build --platform linux/amd64 -f Dockerfile.prod -t ${IMG} .

View File

@@ -0,0 +1,2 @@
echo "> Building ${IMG} for linux/arm/v8"
docker buildx build --platform linux/arm/v8 -f Dockerfile.prod -t ${IMG} .

2
bash/build/push_image.sh Executable file
View File

@@ -0,0 +1,2 @@
echo "> Pushing ${IMG}"
docker push ${IMG}