From cf34ec46c57cb7e16995f699767503012972055b Mon Sep 17 00:00:00 2001 From: Daniel Naab Date: Tue, 14 Jan 2025 16:42:11 -0600 Subject: [PATCH] Update Dockerfile to node 22 and set a 5 minute timeout on the Cloudfoundry app creation (#446) --- Dockerfile | 2 +- infra/cdktf/src/lib/cloud.gov/node-astro.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eff4b8c2..f6b9bab7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-bookworm AS base +FROM node:22-bookworm AS base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" diff --git a/infra/cdktf/src/lib/cloud.gov/node-astro.ts b/infra/cdktf/src/lib/cloud.gov/node-astro.ts index bf27bf2b..cef62869 100644 --- a/infra/cdktf/src/lib/cloud.gov/node-astro.ts +++ b/infra/cdktf/src/lib/cloud.gov/node-astro.ts @@ -101,6 +101,7 @@ export class AstroService extends Construct { serviceInstance: loginGovService.id, }, ], + timeout: 5, }); } }