feat: add custom Dockerfile

This commit is contained in:
kleap-admin 2026-01-16 13:44:04 +00:00
parent f49a29b5f8
commit b64c1e5197
1 changed files with 19 additions and 0 deletions

19
Dockerfile Normal file
View File

@ -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"]