From 720e1c990af9226cc1a48e288b6fbe473c067d47 Mon Sep 17 00:00:00 2001 From: colin Date: Sun, 9 Feb 2025 14:52:19 -0500 Subject: [PATCH] Update docker/lucky-ddg/Dockerfile --- docker/lucky-ddg/Dockerfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docker/lucky-ddg/Dockerfile b/docker/lucky-ddg/Dockerfile index 6767a45..6159b9a 100644 --- a/docker/lucky-ddg/Dockerfile +++ b/docker/lucky-ddg/Dockerfile @@ -5,15 +5,12 @@ FROM python:3.9-slim ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 +# Install duckduckgo_search globally +RUN pip install --no-cache-dir duckduckgo_search + # Set working directory WORKDIR /app -# Copy the requirements file into the container -COPY requirements.txt . - -# Install dependencies -RUN pip install --no-cache-dir -r requirements.txt - # Copy the application code COPY . .