Spaces:
Build error
Build error
FROM selenium/standalone-chrome:latest | |
# USER root | |
# RUN apt-get update && apt-get install -y --no-install-recommends \ | |
# # build-essential \ | |
# git \ | |
# python3 \ | |
# # python3-dev \ | |
# # python3-numpy \ | |
# python3-pip \ | |
# # python3-setuptools \ | |
# openssl \ | |
# # libffi-dev \ | |
# # libssl-dev \ | |
# # python3-wheel \ | |
# && rm -rf /var/lib/apt/lists/* | |
COPY requirements.txt . | |
RUN pip install -r requirements.txt | |
RUN pip list | |
WORKDIR /app | |
COPY . /app | |
EXPOSE 7860 | |
ENTRYPOINT ["python", "main.py"] |