Cuong2004 commited on
Commit
920888d
·
1 Parent(s): 0112b8f

Fix: copy README.md to builder stage

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -14,8 +14,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
14
  git \
15
  && rm -rf /var/lib/apt/lists/*
16
 
17
- # Copy dependency file
18
- COPY pyproject.toml .
19
 
20
  # Install Python dependencies
21
  RUN pip install --no-cache-dir --upgrade pip && \
 
14
  git \
15
  && rm -rf /var/lib/apt/lists/*
16
 
17
+ # Copy dependency files (README.md required by pyproject.toml)
18
+ COPY pyproject.toml README.md ./
19
 
20
  # Install Python dependencies
21
  RUN pip install --no-cache-dir --upgrade pip && \