dockerfile

PHOTO EMBED

Thu Nov 30 2023 03:42:40 GMT+0000 (Coordinated Universal Time)

Saved by @ishwarshinde041 #html

FROM node:12.2.0-alpine
WORKDIR app
COPY . .
RUN npm install
RUN npm run test
EXPOSE 8000
CMD ["node","app.js"]
content_copyCOPY