Files
WatsappIntegrations/gateway/Dockerfile
2026-01-17 22:11:41 -06:00

19 lines
204 B
Docker

FROM node:20-alpine
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm install
# Build
COPY . .
RUN npm run build
# Expose ports
EXPOSE 3001
EXPOSE 3003
# Command
CMD ["npm", "start"]