[AB-70] moving image generation functionality to separate image generation module

removing doge image generation from default base
split rest-api into separate modules (base and extensions)
This commit is contained in:
Sheldan
2023-12-23 20:41:25 +01:00
parent e9d14ac417
commit 980ca9380c
39 changed files with 1896 additions and 41 deletions

View File

@@ -7,8 +7,13 @@ services:
template_deployment:
build: python/deployment/installer/template-deployment
image: ${REGISTRY_PREFIX}abstracto-template-deployment:${VERSION:-latest}
rest_api:
rest_api_base:
build:
context: python/components/rest-api
context: python/components/rest-api-base
dockerfile: docker/Dockerfile
image: ${REGISTRY_PREFIX}abstracto-rest-api:${VERSION:-latest}
rest_api_image_gen:
build:
context: python/components/image-gen
dockerfile: docker/Dockerfile
image: ${REGISTRY_PREFIX}abstracto-rest-api-image-gen:${VERSION:-latest}