diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bc6c401 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM node:22-alpine + +WORKDIR /app + +# Copy package files +COPY package*.json ./ + +# Install dependencies (no cache mount issues) +RUN npm install --legacy-peer-deps + +# Copy source +COPY . . + +# Build +RUN npm run build + +# Start +EXPOSE 3000 +CMD ["npm", "start"]