diff --git a/Dockerfile b/Dockerfile index 6cde844..0aa9224 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM node:8-alpine +RUN apk add --no-cache libc6-compat +COPY package.json yarn.lock ./ WORKDIR /app COPY package.json /app -RUN yarn install --pure-lockfile +RUN yarn install --frozen-lockfile COPY . /app CMD npm run watch EXPOSE 8080 \ No newline at end of file