remove unused dependencies

This commit is contained in:
Flash
2026-04-10 20:50:44 +00:00
parent 1b62fe732c
commit 283e59e280

View File

@@ -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