diff --git a/Dockerfile b/Dockerfile index 9d9f194..16a02f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM node:10-jessie-slim -RUN mkdir /botFlow -WORKDIR /botFlow +RUN mkdir /botflow +WORKDIR /botflow +COPY /app/package.json . +RUN yarn install COPY ./app . EXPOSE 3000 -CMD ["sh", "-c", "yarn install && yarn start"] \ No newline at end of file +CMD ["sh", "-c", "yarn start"] \ No newline at end of file