Skip to content

Commit 569847d

Browse files
authored
Fix cdk bootstrap in make
1 parent 4aef7fb commit 569847d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ PROJECT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
1313
HEADLESS = false
1414
DOCKER_CMD ?= $(or $(CDK_DOCKER),docker)
1515

16-
# Arguments defined through command line or config.yaml
1716

1817
# PROFILE (optional argument)
1918
ifeq (${PROFILE},)
@@ -131,13 +130,13 @@ bootstrap:
131130
@printf "Bootstrapping: $(ACCOUNT_NUMBER) | $(REGION) | $(PARTITION)\n"
132131

133132
ifdef PROFILE
134-
@cdk bootstrap \
133+
@npx cdk bootstrap \
135134
--profile $(PROFILE) \
136135
aws://$(ACCOUNT_NUMBER)/$(REGION) \
137136
--partition $(PARTITION) \
138137
--cloudformation-execution-policies arn:aws:iam::aws:policy/AdministratorAccess
139138
else
140-
@cdk bootstrap \
139+
@npx cdk bootstrap \
141140
aws://$(ACCOUNT_NUMBER)/$(REGION) \
142141
--partition $(PARTITION) \
143142
--cloudformation-execution-policies arn:aws:iam::aws:policy/AdministratorAccess

lib/serve/rest-api/src/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ aiobotocore==2.13.1
33
aiohttp==3.10.11
44
boto3==1.34.131
55
click==8.1.7
6-
cryptography==44.0.1
6+
cryptography==42.0.8
77
fastapi==0.111.1
88
fastapi_utils==0.7.0
99
gunicorn==22.0.0

0 commit comments

Comments
 (0)