Karan Goel commited on
Commit
bb988a3
ยท
1 Parent(s): 7a11683
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -4,8 +4,9 @@ WORKDIR /code
4
 
5
  COPY ./tutorial-1.py /code/tutorial-1.py
6
 
7
- RUN git clone https://github.com/hazyresearch/meerkat.git && \
8
- cd /code/meerkat/
 
9
  # Print the present working directory
10
  RUN pwd
11
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
 
4
 
5
  COPY ./tutorial-1.py /code/tutorial-1.py
6
 
7
+ RUN git clone https://github.com/hazyresearch/meerkat.git
8
+ # cd to /code/meerkat/ and install meerkat
9
+ RUN cd /code/meerkat/
10
  # Print the present working directory
11
  RUN pwd
12
  RUN pip install --no-cache-dir --upgrade -r requirements.txt