fix: copy README.md in Dockerfile for hatchling metadata

This commit is contained in:
Viktor Barzin 2026-03-14 10:14:54 +00:00
parent 2d9d3a8d36
commit c67a8336cf
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -2,7 +2,7 @@ FROM python:3.12-slim AS base
WORKDIR /app
COPY pyproject.toml .
COPY pyproject.toml README.md ./
COPY src/ src/
RUN pip install --no-cache-dir ".[api]"