This commit is contained in:
Urban Modig
2025-09-29 17:28:46 +02:00
commit a91fdf59c4
4 changed files with 90 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM ghcr.io/puppeteer/puppeteer:latest
USER pptruser
WORKDIR /home/pptruser
COPY server.js /home/pptruser
RUN npm install express
CMD node server.js