Merge pull request #52 from logspace-ai/fix_frontend_dockerfile

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-03-20 06:36:14 -03:00 committed by GitHub
commit e6baf6226c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,14 @@ build:
dev:
make install_frontend
ifeq ($(build),1)
@echo 'Running docker compose up with build'
docker compose up --build
else
@echo 'Running docker compose up without build'
docker compose up
endif
publish:
make build