Browse Source

Fix npm install in Dockerfile to only install production packages

tags/v0.4^2
Vildravn 4 years ago
parent
commit
ba17eba7d7
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      Dockerfile

+ 3
- 3
Dockerfile View File

@@ -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"]
CMD ["node", "index.js"]

Loading…
Cancel
Save