Spaces:
Build error
Build error
File size: 534 Bytes
0d2e9a4 7e54bcf 1d8d56e 7e54bcf 0d2e9a4 0ac114b 0d2e9a4 0ac114b |
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 28 |
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"] |