Siddharaj Shirke commited on
Commit
76eb481
·
1 Parent(s): def7c89

fix: include README.md in Docker build for package metadata

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y gcc g++ \
18
  && rm -rf /var/lib/apt/lists/*
19
 
20
  # Copy project metadata and backend source for package installation
21
- COPY pyproject.toml .
22
  COPY backend ./backend/
23
  RUN pip install --no-cache-dir .
24
 
 
18
  && rm -rf /var/lib/apt/lists/*
19
 
20
  # Copy project metadata and backend source for package installation
21
+ COPY pyproject.toml README.md ./
22
  COPY backend ./backend/
23
  RUN pip install --no-cache-dir .
24