fix: upgrade Node 18 to 22 and fix Puppeteer compatibility

- Switch from Alpine to Debian slim for correct Chromium architecture
  (fixes ARM/Apple Silicon support)
- Upgrade Puppeteer 21 to 24, use system Chromium via PUPPETEER_EXECUTABLE_PATH
- Replace removed page.waitForTimeout() with setTimeout
- Set NODE_ENV=production in Dockerfile to prevent pino-pretty import
- Improve error logging with Pino's { err: error } pattern
- Add build: . to docker-compose for local development builds
This commit is contained in:
Samuel Enocsson
2026-03-19 23:03:27 +01:00
parent 0b55aeb632
commit d567c4bca9
8 changed files with 322 additions and 143 deletions
+10 -12
View File
@@ -1,19 +1,16 @@
# Use official Node.js runtime as base image
FROM node:18-alpine
FROM node:22-slim
# Install Chromium and dependencies for Puppeteer
RUN apk add --no-cache \
# Install Chromium from Debian repos (correct architecture for ARM/x86)
RUN apt-get update && apt-get install -y --no-install-recommends \
chromium \
nss \
freetype \
freetype-dev \
harfbuzz \
ca-certificates \
ttf-freefont
fonts-freefont-ttf \
&& rm -rf /var/lib/apt/lists/*
# Tell Puppeteer to skip installing Chromium. We'll be using the installed package.
# Use system Chromium instead of Puppeteer's bundled download
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
# Set working directory
WORKDIR /app
@@ -31,10 +28,11 @@ COPY . .
RUN mkdir -p data
# Set database path
ENV DB_PATH=/app/data/ratings.db
ENV DB_PATH=/app/data/ratings.db \
NODE_ENV=production
# Expose port
EXPOSE 3000
# Start the application
CMD ["npm", "start"]
CMD ["npm", "start"]