Spaces:
Runtime error
Runtime error
Karan Goel
commited on
Commit
ยท
fb4253c
1
Parent(s):
b0de5af
udpate
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
-
RUN echo "Installing npm packages"
|
4 |
WORKDIR /code
|
5 |
COPY ./tutorial-1.py /code/tutorial-1.py
|
6 |
|
@@ -9,7 +8,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
|
9 |
RUN apt-get install -y nodejs
|
10 |
|
11 |
RUN git clone https://github.com/hazyresearch/meerkat.git
|
12 |
-
WORKDIR /code/meerkat/
|
13 |
RUN ls > /code/ls.txt && cat /code/ls.txt
|
14 |
|
15 |
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 |
|
|
|
8 |
RUN apt-get install -y nodejs
|
9 |
|
10 |
RUN git clone https://github.com/hazyresearch/meerkat.git
|
11 |
+
WORKDIR /code/meerkat/meerkat/interactive/
|
12 |
RUN ls > /code/ls.txt && cat /code/ls.txt
|
13 |
|
14 |
WORKDIR /code/meerkat/meerkat/interactive/app/
|