selenium / Dockerfile
navpan2's picture
Upload 3 files
8fbb821
raw
history blame
536 Bytes
FROM python:3.10
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:${PATH}"
WORKDIR /app
COPY --chown=user . /app
USER root
RUN apt-get update && apt-get install -y wget unzip && \
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
apt install -y ./google-chrome-stable_current_amd64.deb && \
rm google-chrome-stable_current_amd64.deb && \
apt-get clean
USER user
RUN pip install --trusted-host pypi.python.org -r requirements.txt
COPY --chown=user . .
CMD ["python", "main.py" ]