Polo123 commited on
Commit
f70ca45
·
verified ·
1 Parent(s): 2dfac8e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -8,10 +8,12 @@ RUN apt-get update && \
8
  apt-get upgrade -y && \
9
  apt-get install -y git
10
 
 
 
11
  RUN git clone -b oasis_connector --single-branch https://github.com/arangodb/interactive_tutorials.git
12
  RUN git clone -b movie-data-source --single-branch https://github.com/arangodb/interactive_tutorials.git movie_data_source
13
  # RUN rsync -av interactive_tutorials/ ./ --exclude=.git
14
- RUN chmod -R 755 /tools
15
  RUN unzip ./movie_data_source/sampled_movie_dataset.zip
16
  RUN pip3 install --no-cache-dir -r /app/requirements.txt
17
 
 
8
  apt-get upgrade -y && \
9
  apt-get install -y git
10
 
11
+ RUN echo "Shrey $PWD"
12
+
13
  RUN git clone -b oasis_connector --single-branch https://github.com/arangodb/interactive_tutorials.git
14
  RUN git clone -b movie-data-source --single-branch https://github.com/arangodb/interactive_tutorials.git movie_data_source
15
  # RUN rsync -av interactive_tutorials/ ./ --exclude=.git
16
+ RUN chmod -R 755 /app/tools
17
  RUN unzip ./movie_data_source/sampled_movie_dataset.zip
18
  RUN pip3 install --no-cache-dir -r /app/requirements.txt
19