Files
pixelpoebel/Dockerfile
sarah 6825e9d1b2
All checks were successful
Auto Build and Push Docker Image / build (push) Successful in 14s
Fix: Move TypeScript to dependencies for Docker build
Move typescript from devDependencies to dependencies so it's
available in the Docker container during build.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-22 16:36:34 +01:00

16 lines
216 B
Docker

FROM node:22-alpine
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm ci
# Copy source and build
COPY . .
RUN npm run build
# Create data directory
RUN mkdir -p data
CMD ["node", "dist/index.js"]