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
WORKDIR /app
COPY package.json /app
RUN yarn
RUN yarn install --frozen-lockfile
COPY . /app
CMD npm run watch
EXPOSE 8080