add services/mam-api/Dockerfile

This commit is contained in:
Zac Gaetano 2026-04-07 21:58:25 -04:00
parent 3694e65ab0
commit 2f81029112

View file

@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
EXPOSE 3000
CMD ["node", "src/index.js"]