ソースを参照

Fix npm install in Dockerfile to only install production packages

tags/v0.4^2
Vildravn 4年前
コミット
ba17eba7d7
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      Dockerfile

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

読み込み中…
キャンセル
保存