From 601a3b4ac2fcfeb9b378959c9eb1393fda42ff73 Mon Sep 17 00:00:00 2001 From: Sergey Bahmatov Date: Fri, 28 Mar 2025 20:34:44 +0500 Subject: [PATCH] Dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index dd5bb6b..36641db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,10 @@ FROM python:3.11-slim WORKDIR /app -COPY ./src /app - +COPY ./src ./src COPY requirements.txt ./ -ENV PYTHONPATH=/app +ENV PYTHONPATH=/app/src RUN pip install --no-cache-dir -r requirements.txt