docker_test / Dockerfile
Yusin's picture
Update Dockerfile
a95da86
raw
history blame
551 Bytes
# 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"]