From a9732c99626ffba08c3a5969ab8a9398a254d591 Mon Sep 17 00:00:00 2001 From: dgtown Date: Tue, 5 Mar 2024 17:59:23 -0500 Subject: [PATCH] add test apps --- test-yamls/js-test-app-buildpack.yaml | 2 +- test-yamls/js-test-app-dockerfile.yaml | 3 +-- test-yamls/next-test-app-dockerfile.yaml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) 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