mirror of
https://gitlab.com/sarlink/kyc.git
synced 2025-02-22 09:32:06 +00:00
10 lines
160 B
Docker
10 lines
160 B
Docker
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
|