From 5cb042b65bf7626155552b10e656934a3f3853c5 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Tue, 15 Jul 2025 13:40:22 -0700 Subject: [PATCH] Update requirements.txt path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1efdd9a..f2eac90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN apk add --no-cache \ && pip install --upgrade pip # Copy the requirements file and install dependencies -COPY src/requirements.txt . +COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the application code