File size: 549 Bytes
790f2db
 
fb0ec11
790f2db
b942d7a
 
 
 
 
 
790f2db
a95da86
 
790f2db
a95da86
790f2db
a95da86
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 python3-pip python3-dev \
  && cd /usr/local/bin \
  && ln -s /usr/bin/python3 python \
  && pip3 --no-cache-dir install --upgrade pip \
  && rm -rf /var/lib/apt/lists/*

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

COPY aberconnect.sh .

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