Files
omnisupport-ai/backend/Dockerfile
2026-02-18 13:56:46 +01:00

21 lines
300 B
Docker

FROM node:20-alpine
# Install dependencies for native modules
RUN apk add --no-cache python3 make g++
WORKDIR /app
COPY package.json ./
# Install dependencies
RUN npm install
COPY . .
# Ensure uploads directory exists
RUN mkdir -p uploads
EXPOSE 3000
CMD ["npm", "start"]