mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage-server
synced 2026-04-11 10:07:22 +00:00
- Update default campaign to Inbound_918041763265 - Add Dockerfile and .dockerignore for container deployment - Sidecar image: 043728036361.dkr.ecr.ap-south-1.amazonaws.com/fortytwo-eap/helix-engage-sidecar:alpha Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
143 B
Docker
8 lines
143 B
Docker
FROM node:22-slim
|
|
WORKDIR /app
|
|
COPY dist ./dist
|
|
COPY node_modules ./node_modules
|
|
COPY package.json ./
|
|
EXPOSE 4100
|
|
CMD ["node", "dist/main.js"]
|