File size: 752 Bytes
69df446
 
 
 
 
 
 
 
 
 
f70ca45
 
69df446
 
8ea9619
f70ca45
8ea9619
69df446
 
 
8ea9619
69df446
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM python:3.8.9

WORKDIR /app

COPY . /app/

RUN apt-get update && \
    apt-get upgrade -y && \
    apt-get install -y git

RUN echo "Shrey $PWD"

RUN git clone -b oasis_connector --single-branch https://github.com/arangodb/interactive_tutorials.git
RUN git clone -b movie-data-source --single-branch https://github.com/arangodb/interactive_tutorials.git movie_data_source
# RUN rsync -av interactive_tutorials/ ./ --exclude=.git
RUN chmod -R 755 /app/tools
RUN unzip ./movie_data_source/sampled_movie_dataset.zip
RUN pip3 install --no-cache-dir -r /app/requirements.txt



EXPOSE 8501
CMD streamlit run app.py \
    --server.headless true \
    --server.enableCORS false \
    --server.enableXsrfProtection false \
    --server.fileWatcherType none