Skip to content

Commit

Permalink
Bumped PGM dependencies
Browse files Browse the repository at this point in the history
* Fixed Dockerfile syntax
  • Loading branch information
victorskl committed Aug 14, 2024
1 parent 296eb2e commit 4d963f3
Show file tree
Hide file tree
Showing 3 changed files with 766 additions and 642 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/nodejs:20-arm64 as builder
FROM public.ecr.aws/lambda/nodejs:20-arm64 AS builder
WORKDIR /usr/app

COPY ./function ./function
Expand Down
15 changes: 6 additions & 9 deletions lib/workload/stateful/stacks/postgres-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
{
"name": "postgres-manager",
"packageManager": "yarn@4.3.0",
"packageManager": "yarn@4.4.0",
"scripts": {
"test": "tsc && jest",
"build": "esbuild function/index.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js",
"clean": "rm -rf ./dist",
"audit": "yarn npm audit"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.600.0",
"@aws-sdk/client-secrets-manager": "^3.629.0",
"pg": "^8.12.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.140",
"@types/aws-lambda": "^8.10.143",
"@types/jest": "^29.5.12",
"@types/pg": "^8.11.6",
"esbuild": "^0.21.5",
"esbuild": "^0.23.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
},
"resolutions": {
"glob": "^10.4.2"
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}
Loading

0 comments on commit 4d963f3

Please sign in to comment.