diff --git a/docker-compose.yml b/docker-compose.yml index 8d2caad..b270fb5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: platformics: - image: platformics + image: ghcr.io/chanzuckerberg/platformics:latest build: context: "." dockerfile: "Dockerfile" diff --git a/test_app/Makefile b/test_app/Makefile index 3fc5603..03c50bd 100644 --- a/test_app/Makefile +++ b/test_app/Makefile @@ -46,6 +46,7 @@ init: $(docker_compose_run) $(APP_CONTAINER) sh -c 'strawberry export-schema main:schema > /app/api/schema.graphql' sleep 5 # wait for the app to reload after having files updated. docker compose up -d + sleep 5 docker compose exec $(APP_CONTAINER) python3 -m sgqlc.introspection --exclude-deprecated --exclude-description http://localhost:9009/graphql api/schema.json .PHONY: clean