we're about to port the chrome-extension. everything else mostly works

This commit is contained in:
cottongin
2025-10-30 13:27:55 -04:00
parent 2db707961c
commit db2a8abe66
29 changed files with 2490 additions and 562 deletions

View File

@@ -2,11 +2,14 @@ FROM node:18-alpine
WORKDIR /app
# Install wget for healthcheck
RUN apk add --no-cache wget
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
RUN npm install --omit=dev
# Copy application files
COPY . .