Spaces:
Runtime error
Runtime error
Karan Goel
commited on
Commit
ยท
1d3d569
1
Parent(s):
02892f2
udpate
Browse files- Dockerfile +2 -14
Dockerfile
CHANGED
@@ -8,26 +8,14 @@ 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 |
-
WORKDIR /code/meerkat/
|
12 |
-
RUN
|
13 |
|
14 |
WORKDIR /code/meerkat/meerkat/interactive/app/
|
15 |
-
# Echo the result of ls
|
16 |
-
RUN ls > /code/ls.txt && cat /code/ls.txt
|
17 |
RUN npm install && npm run build
|
18 |
|
19 |
WORKDIR /code/meerkat/
|
20 |
-
|
21 |
-
RUN pwd
|
22 |
RUN pip install --no-cache-dir --upgrade .
|
23 |
-
# -r requirements.txt
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
# Install npm packages
|
28 |
-
WORKDIR /code/meerkat/meerkat/interactive/app/
|
29 |
-
RUN ls
|
30 |
-
RUN npm install && npm run build
|
31 |
|
32 |
COPY . .
|
33 |
|
|
|
8 |
RUN apt-get install -y nodejs
|
9 |
|
10 |
RUN git clone https://github.com/hazyresearch/meerkat.git
|
11 |
+
WORKDIR /code/meerkat/
|
12 |
+
RUN git checkout clever-dev
|
13 |
|
14 |
WORKDIR /code/meerkat/meerkat/interactive/app/
|
|
|
|
|
15 |
RUN npm install && npm run build
|
16 |
|
17 |
WORKDIR /code/meerkat/
|
|
|
|
|
18 |
RUN pip install --no-cache-dir --upgrade .
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
COPY . .
|
21 |
|