File size: 551 Bytes
790f2db
 
 
fb0ec11
790f2db
a95da86
 
b40da41
a95da86
790f2db
a95da86
 
790f2db
a95da86
790f2db
a95da86
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile

FROM ultrafunk/undetected-chromedriver:latest

RUN apt-get update && apt-get install -y software-properties-common gcc && \
    add-apt-repository -y ppa:deadsnakes/ppa

RUN apt-get update && apt-get install -y python3.9 python3-distutils python3-pip python3-apt

COPY requirements.txt .
RUN python -m pip install  -r requirements.txt

COPY aberconnect.sh .

RUN chmod +x aberconnect.sh
ENTRYPOINT ["./aberconnect.sh"]