We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3e7b97 commit 2da66ddCopy full SHA for 2da66dd
Dockerfile
@@ -49,5 +49,7 @@ COPY node_modules ${FUNCTION_DIR}/node_modules
49
50
WORKDIR ${FUNCTION_DIR}
51
52
+RUN npm install puppeteer
53
+
54
ENTRYPOINT ["/usr/local/bin/npx", "aws-lambda-ric"]
55
CMD [ "index.handler" ]
src/SaveUrl.ts
@@ -85,7 +85,7 @@ export default class SaveUrl {
85
console.log(`Received URL: ${url}`);
86
87
const browser = await puppeteer.launch({
88
- executablePath,
+ // executablePath,
89
userDataDir: "/tmp",
90
// dumpio: true,
91
args: options
0 commit comments