failed miserably at hack.lu

This commit is contained in:
2025-10-19 20:35:43 +02:00
parent 9361bb3f29
commit c04f977a69
56 changed files with 120530 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
FROM node:24-alpine
RUN apk update && apk add chromium
WORKDIR /app/
COPY . /app/
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
ENV PUPPETEER_SKIP_DOWNLOAD=true
RUN ["npm", "install"]
EXPOSE 3000
ENTRYPOINT ["node", "bot.js"]