Update applications/puppeteer/Dockerfile
Some checks failed
Build Container: Node Puppeteer / Build Container Image: container:node-puppeteer (node-puppeteer) (push) Failing after 23s

This commit is contained in:
2025-06-11 18:49:46 +00:00
parent 08bcc2d37d
commit b7fe5edb7d

View File

@@ -30,8 +30,8 @@ RUN npm install puppeteer --no-save
COPY --chown=container:container . .
# Update the PUPPETEER_EXECUTABLE_PATH to the correct Chrome path (placeholder, update based on the output of `which google-chrome-stable`)
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \\
PUPPETEER_EXECUTABLE_PATH=/usr/bin/google-chrome-stable
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/google-chrome-stable
# Set the command to run your Puppeteer script
CMD ["node", "puppeteer-script.js"]