Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
FROM python:3.8.9
|
2 |
|
3 |
-
WORKDIR
|
4 |
|
5 |
-
COPY .
|
6 |
|
7 |
RUN apt-get update && \
|
8 |
apt-get upgrade -y && \
|
@@ -13,9 +13,9 @@ RUN echo "Shrey $PWD"
|
|
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
|
17 |
RUN unzip ./movie_data_source/sampled_movie_dataset.zip
|
18 |
-
RUN pip3 install --no-cache-dir -r
|
19 |
|
20 |
|
21 |
|
|
|
1 |
FROM python:3.8.9
|
2 |
|
3 |
+
WORKDIR .
|
4 |
|
5 |
+
COPY . .
|
6 |
|
7 |
RUN apt-get update && \
|
8 |
apt-get upgrade -y && \
|
|
|
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 ./tools
|
17 |
RUN unzip ./movie_data_source/sampled_movie_dataset.zip
|
18 |
+
RUN pip3 install --no-cache-dir -r requirements.txt
|
19 |
|
20 |
|
21 |
|