diff --git a/test-yamls/js-test-app-buildpack.yaml b/test-yamls/js-test-app-buildpack.yaml index e0e8987..43c0f25 100644 --- a/test-yamls/js-test-app-buildpack.yaml +++ b/test-yamls/js-test-app-buildpack.yaml @@ -6,7 +6,7 @@ services: type: web port: 3000 build: - context: ./ + context: ./js-test-app method: pack builder: heroku/buildpacks:20 buildpacks: diff --git a/test-yamls/js-test-app-dockerfile.yaml b/test-yamls/js-test-app-dockerfile.yaml index da234d6..1aabf73 100644 --- a/test-yamls/js-test-app-dockerfile.yaml +++ b/test-yamls/js-test-app-dockerfile.yaml @@ -6,9 +6,8 @@ services: type: web port: 3000 build: - context: ./ + context: ./js-test-app method: docker dockerfile: ./docker/Dockerfile -version: v2 predeploy: run: ls diff --git a/test-yamls/next-test-app-dockerfile.yaml b/test-yamls/next-test-app-dockerfile.yaml index 0762e58..603b191 100644 --- a/test-yamls/next-test-app-dockerfile.yaml +++ b/test-yamls/next-test-app-dockerfile.yaml @@ -5,6 +5,6 @@ services: predeploy: run: ls build: - context: ./ + context: ./next-test-app method: docker dockerfile: ./Dockerfile