Files
AIOps Lab 793c3a4437
All checks were successful
Build and Deploy QuickCart / build-and-deploy (push) Successful in 51s
Initial workshop snapshot
2026-07-10 10:43:03 +00:00

8 lines
137 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --production
COPY index.js ./
EXPOSE 3004
CMD ["node", "index.js"]