diff --git a/Dockerfile b/Dockerfile index d5955ff..f6d41c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ WORKDIR /usr/src/app # Install app dependencies # A wildcard is used to ensure both package.json AND package-lock.json are copied # where available (npm@5+) -COPY backend/package*.json ./ +# COPY backend/package*.json ./ +COPY backend ./ RUN npm install @@ -15,4 +16,4 @@ RUN npm install COPY backend . EXPOSE 3000 -CMD [ "node", "server.js" ] \ No newline at end of file +CMD [ "node", "index.js" ] \ No newline at end of file