infra/build_pipeline_construct.py [90:114]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            project_name="sagemaker-{}-{}".format(project_name, construct_id),
            role=code_build_role,
            build_spec=codebuild.BuildSpec.from_object(
                dict(
                    version="0.2",
                    phases=dict(
                        install={
                            "runtime-versions": {
                                "nodejs": "12",
                                "python": "3.8",
                            },
                            "commands": [
                                "npm install aws-cdk",
                                "npm update",
                                "python -m pip install -r requirements.txt",
                            ],
                        },
                        build=dict(
                            commands=[
                                "npx cdk synth -o dist --path-metadata false",
                            ]
                        ),
                    ),
                    artifacts={
                        "base-directory": "dist",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



infra/deploy_pipeline_construct.py [88:112]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            project_name="sagemaker-{}-{}".format(project_name, construct_id),
            role=code_build_role,
            build_spec=codebuild.BuildSpec.from_object(
                dict(
                    version="0.2",
                    phases=dict(
                        install={
                            "runtime-versions": {
                                "nodejs": "12",
                                "python": "3.8",
                            },
                            "commands": [
                                "npm install aws-cdk",
                                "npm update",
                                "python -m pip install -r requirements.txt",
                            ],
                        },
                        build=dict(
                            commands=[
                                "npx cdk synth -o dist --path-metadata false",
                            ]
                        ),
                    ),
                    artifacts={
                        "base-directory": "dist",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



