From 3fca1a2c2e2636bcabbcaf2ed4490919edee39e6 Mon Sep 17 00:00:00 2001 From: colin Date: Sun, 9 Feb 2025 14:42:22 -0500 Subject: [PATCH] Update docker/lucky-ddg/Dockerfile --- docker/lucky-ddg/Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docker/lucky-ddg/Dockerfile b/docker/lucky-ddg/Dockerfile index 35e5667..c5cc12f 100644 --- a/docker/lucky-ddg/Dockerfile +++ b/docker/lucky-ddg/Dockerfile @@ -8,13 +8,8 @@ ENV PYTHONUNBUFFERED=1 # Set working directory WORKDIR /app -# Install Git -RUN apt-get update && apt-get install -y git - -# Copy the requirements file into the container -COPY requirements.txt . - # Install dependencies +COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the application code