FROM python:3.9-slim # Install necessary system dependencies and gnupg RUN apt-get update && apt-get install -y \ libgl1-mesa-glx \ libglib2.0-0 \ wget \ unzip \ curl \ ca-certificates \ gnupg \ fonts-liberation \ libnss3 \ libxss1 \ libappindicator1 \ libgbm-dev \ libgtk-3-0 \ && rm -rf /var/lib/apt/lists/* # Install Chrome RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list \ && apt-get update \ && apt-get install -y google-chrome-stable \ && rm -rf /var/lib/apt/lists/* # Install ChromeDriver that matches the installed Chrome version # Install ChromeDriver that matches the installed Chrome version RUN CHROME_VERSION=$(google-chrome --version | awk '{print $3}' | cut -d '.' -f 1-3) \ && CHROME_DRIVER_VERSION=$(curl -sS "https://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_VERSION}") \ && wget -O /tmp/chromedriver.zip "https://chromedriver.storage.googleapis.com/${CHROME_DRIVER_VERSION}/chromedriver_linux64.zip" \ && unzip /tmp/chromedriver.zip -d /usr/local/bin/ \ && rm /tmp/chromedriver.zip WORKDIR /code RUN mkdir -p /code/uploads && chmod 755 /code/uploads # Copy and install Python dependencies COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY . /code # Add and use a non-root user RUN useradd -ms /bin/sh myuser RUN chown -R myuser:myuser /code USER myuser # Default command to run the application CMD ["python", "app.py"]