diff --git a/Dockerfile b/Dockerfile index 0654a2a..126e51c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,6 @@ FROM python:3.12-slim WORKDIR /app -# Install dependencies for Selenium and Chrome -RUN apt-get update && apt-get install -y \ - wget \ - gnupg \ - unzip \ - curl \ - && rm -rf /var/lib/apt/lists/* - COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt