fix dockerfile

This commit is contained in:
“marselinowidis” 2023-01-17 23:28:01 +07:00
parent ba8629005e
commit 07634ef503

View File

@ -1,7 +1,7 @@
FROM node:8-alpine FROM node:8-alpine
WORKDIR /app WORKDIR /app
COPY package.json /app COPY package.json /app
RUN yarn RUN yarn install --frozen-lockfile
COPY . /app COPY . /app
CMD npm run watch CMD npm run watch
EXPOSE 8080 EXPOSE 8080