dockerfile

This commit is contained in:
marselinowidis 2023-01-18 12:15:42 +07:00
parent 35ce9e2484
commit 9e39000483

View File

@ -2,7 +2,7 @@ FROM node:8-alpine
RUN apk add --no-cache libc6-compat
RUN apk add --no-cache git
WORKDIR /app
COPY package.json package-lock.json /app
COPY package.json package-lock.json /app/
RUN npm install
COPY . /app
CMD npm run watch