Karan Goel commited on
Commit
904bbb4
ยท
1 Parent(s): bb988a3
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -5,9 +5,9 @@ WORKDIR /code
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
13
 
 
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/
10
+
11
  RUN pwd
12
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
13