diff --git a/Dockerfile b/Dockerfile index c3ed15fd..0abd59fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,11 +10,11 @@ COPY . . # Change directory to src/server/ WORKDIR /usr/src/isleward/src/server/ -# Install npm modules specified in package.json -RUN npm install --only-production +# Install only production npm modules specified in package.json +RUN npm install --only=production # Expose container's port 4000 EXPOSE 4000 # Launch Isleward server -CMD ["node", "index.js"] \ No newline at end of file +CMD ["node", "index.js"]