kyc/.build/node.Dockerfile

10 lines
160 B
Docker
Raw Normal View History

2024-02-10 23:17:41 +05:00
FROM node:18.18-buster AS npminstall
WORKDIR /var/www/html
COPY . /var/www/html
RUN --mount=type=cache,target=/root/.npm \
npm install
CMD npm run start