From adc17263741cf4710d94f7f3cb041b637f6ed4da Mon Sep 17 00:00:00 2001 From: colin Date: Sun, 9 Feb 2025 14:49:41 -0500 Subject: [PATCH] Update docker/lucky-ddg/Dockerfile --- docker/lucky-ddg/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/lucky-ddg/Dockerfile b/docker/lucky-ddg/Dockerfile index c5cc12f..6767a45 100644 --- a/docker/lucky-ddg/Dockerfile +++ b/docker/lucky-ddg/Dockerfile @@ -8,8 +8,10 @@ ENV PYTHONUNBUFFERED=1 # Set working directory WORKDIR /app -# Install dependencies +# 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