fix dockerfile

This commit is contained in:
marselinowidis 2023-01-18 12:07:32 +07:00
parent c154ccc0f6
commit 7a4ea8c528

View File

@ -1,9 +1,9 @@
FROM node:8-alpine
RUN apk add --no-cache libc6-compat
RUN apk add git && yarn
RUN apk add --no-cache git
WORKDIR /app
COPY package.json /app
RUN yarn install --frozen-lockfile
RUN npm ci
COPY . /app
CMD npm run watch
EXPOSE 8080