AnthoneoJ commited on
Commit
973f481
·
verified ·
1 Parent(s): cf4b72a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -7,7 +7,7 @@ WORKDIR /code
7
  COPY . .
8
  # ==== BUILD =====
9
  # Install dependencies (npm ci makes sure the exact versions in the lockfile gets installed)
10
- RUN npm ci
11
  # Build the app
12
  RUN npm run build
13
  # ==== RUN =======
@@ -16,4 +16,4 @@ ENV NODE_ENV production
16
  # Expose the port on which the app will be running (3000 is the default that `serve` uses)
17
  EXPOSE 7860
18
  # Start the app
19
- CMD [ "npx", "serve", "-l", "7860", "build" ]
 
7
  COPY . .
8
  # ==== BUILD =====
9
  # Install dependencies (npm ci makes sure the exact versions in the lockfile gets installed)
10
+ RUN npm install
11
  # Build the app
12
  RUN npm run build
13
  # ==== RUN =======
 
16
  # Expose the port on which the app will be running (3000 is the default that `serve` uses)
17
  EXPOSE 7860
18
  # Start the app
19
+ CMD [ "npm", "run", "start" ]