diff --git a/Dockerfile b/Dockerfile index 6e9dfe3..1ed765b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ FROM node:12.18.4 -WORKDIR /usr/scr/app +WORKDIR /app COPY package.json yarn.lock ./ +COPY . . + EXPOSE 3000 RUN yarn global add node-gyp && yarn install -CMD [ "yarn", "start"] \ No newline at end of file +CMD [ "yarn", "start"]