manavgup / rag_modulo

0 stars 2 forks source link

make build-frontend doesn't seem to work properly #8

Open manavgup opened 1 week ago

manavgup commented 1 week ago

The typical way to build the app is;

make clean; make build-app; make run-app

build-app calls docker-compose build:

build-app:
    @echo "Building application containers..."
    $(DOCKER_COMPOSE) build

while build-frontend is using docker build

build-frontend:
    docker build -t $(PROJECT_NAME)-frontend \
        -f webui/Dockerfile.frontend ./webui