diff --git a/Dockerfile b/Dockerfile index ab5c432..6dd5561 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN npm ci --omit=dev ## the actual run image FROM public.ecr.aws/lambda/nodejs:18 RUN yum update -y && \ - yum install postgresql.x86_64 -y + yum install postgresql -y ENV NODE_OPTIONS="--trace-warnings" diff --git a/tsconfig.json b/tsconfig.json index 0b54578..770ba06 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@tsconfig/node18/tsconfig.json", + "extends": "./node_modules/@tsconfig/node18/tsconfig.json", "compilerOptions": { "outDir": "./dist", "module": "esnext",