add services/mam-api/Dockerfile
This commit is contained in:
parent
3694e65ab0
commit
2f81029112
1 changed files with 7 additions and 0 deletions
7
services/mam-api/Dockerfile
Normal file
7
services/mam-api/Dockerfile
Normal 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"]
|
||||||
Loading…
Reference in a new issue