Karan Goel commited on
Commit
b5a7b66
ยท
1 Parent(s): f1045c2
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -17,7 +17,8 @@ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
17
  RUN apt-get install -y nodejs
18
 
19
  # Install npm packages
20
- RUN cd meerkat/interactive/app/ && npm install && npm run build
 
21
 
22
  COPY . .
23
 
 
17
  RUN apt-get install -y nodejs
18
 
19
  # Install npm packages
20
+ WORKDIR /code/meerkat/interactive/app/
21
+ RUN npm install && npm run build
22
 
23
  COPY . .
24