From 1dcfe9b77310630060df159ce2a53d901e63f5dc Mon Sep 17 00:00:00 2001 From: kianiadee Date: Sat, 23 May 2026 01:16:10 +0300 Subject: [PATCH] Dockerfile: copy app/ + README before pip install for hatchling metadata --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a554630..46b3e89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,8 @@ RUN apt-get update \ && apt-get install -y --no-install-recommends build-essential libpq-dev \ && rm -rf /var/lib/apt/lists/* -COPY pyproject.toml ./ +COPY pyproject.toml README.md ./ +COPY app/ ./app/ RUN python -m venv /opt/venv \ && /opt/venv/bin/pip install --upgrade pip \ && /opt/venv/bin/pip install .