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