diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 36abc4ed..166ddbd4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -56,6 +56,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + - name: Lower case registry variable + run: REGISTRY=$(echo "$VARIABLE" | tr '[:upper:]' '[:lower:]') + - name: Build container image run: docker build . --platform linux/amd64 --target doj-demo --tag ${REGISTRY}/doj-demo:${TAG_NAME} diff --git a/infra/src/cloud.gov/node-astro.ts b/infra/src/cloud.gov/node-astro.ts index 948fd674..b3abf29a 100644 --- a/infra/src/cloud.gov/node-astro.ts +++ b/infra/src/cloud.gov/node-astro.ts @@ -23,7 +23,8 @@ export class AstroService extends Construct { new cloudfoundry.app.App(this, `${id}-app`, { name: `${id}-app`, space: spaceId, - dockerImage: 'ghcr.io/gsa-tts/tts-10x-atj-dev/doj-demo:latest', + //dockerImage: 'ghcr.io/gsa-tts/tts-10x-atj-dev/doj-demo:latest', + dockerImage: 'ghcr.io/gsa-tts/atj-platform/doj-demo:main', memory: 1024, diskQuota: 4096, healthCheckType: 'http',