Fix: copy README.md to builder stage
Browse files- 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
|
| 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 && \
|