diff --git a/Dockerfile b/Dockerfile index 3bb27c6b..253344e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM node:slim -COPY . . +WORKDIR /usr/src/app + +COPY . /usr/src/app RUN npm install --production -ENTRYPOINT ["node", "/lib/main.js"] +ENTRYPOINT ["node", "/usr/src/app/lib/main.js"]