smgc commited on
Commit
88099f7
1 Parent(s): db2bb35

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -6,6 +6,8 @@ RUN sed -i'' 's|router.Group("/v1|router.Group("/api/v1|g' /app/router/relay-rou
6
 
7
  WORKDIR /build
8
  COPY /app/web/package.json .
 
 
9
  RUN npm install
10
  RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
11
 
 
6
 
7
  WORKDIR /build
8
  COPY /app/web/package.json .
9
+ COPY /app/web .
10
+ COPY /app/VERSION .
11
  RUN npm install
12
  RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
13