Karan Goel commited on
Commit
ec2feb3
ยท
1 Parent(s): aaacdb2
Files changed (1) hide show
  1. Dockerfile +5 -4
Dockerfile CHANGED
@@ -1,9 +1,12 @@
1
  FROM python:3.9
2
 
3
  WORKDIR /code
4
-
5
  COPY ./tutorial-1.py /code/tutorial-1.py
6
 
 
 
 
 
7
  RUN git clone https://github.com/hazyresearch/meerkat.git
8
 
9
  WORKDIR /code/meerkat/meerkat/interactive/app/
@@ -16,9 +19,7 @@ RUN pwd
16
  RUN pip install --no-cache-dir --upgrade .
17
  # -r requirements.txt
18
 
19
- # Install node >= 18.0.0 and npm
20
- RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
21
- RUN apt-get install -y nodejs
22
 
23
  # Install npm packages
24
  WORKDIR /code/meerkat/meerkat/interactive/app/
 
1
  FROM python:3.9
2
 
3
  WORKDIR /code
 
4
  COPY ./tutorial-1.py /code/tutorial-1.py
5
 
6
+ # Install node >= 18.0.0 and npm
7
+ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
8
+ RUN apt-get install -y nodejs
9
+
10
  RUN git clone https://github.com/hazyresearch/meerkat.git
11
 
12
  WORKDIR /code/meerkat/meerkat/interactive/app/
 
19
  RUN pip install --no-cache-dir --upgrade .
20
  # -r requirements.txt
21
 
22
+
 
 
23
 
24
  # Install npm packages
25
  WORKDIR /code/meerkat/meerkat/interactive/app/