api-docs / Dockerfile
Hanzo Dev
Simplify Docker startup
32a7e1f
raw
history blame
221 Bytes
FROM node:20-slim
WORKDIR /app
# Copy everything
COPY . .
# Install dependencies
RUN npm ci --legacy-peer-deps
# Build the app
RUN npm run build
# Expose port
EXPOSE 3000
# Start with npm start
CMD ["npm", "start"]