diff --git a/server/Dockerfile b/server/Dockerfile index 8723a9b..54a7507 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -5,9 +5,9 @@ WORKDIR /server # A wildcard is used to ensure both package.json AND package-lock.json are copied # where available (npm@5+) COPY package*.json ./ -RUN npm install +# RUN npm install # If you are building your code for production -# RUN npm ci --omit=dev +RUN npm ci --omit=dev # Bundle app source COPY . . EXPOSE 5000