Skip to content

Commit 2c13e92

Browse files
Fix Docker build failed when try copy file that not exists
1 parent d095aeb commit 2c13e92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN curl -sSL https://install.python-poetry.org | python3 - && \
1717
ln -s /root/.local/bin/poetry /usr/local/bin/poetry
1818

1919
# Copy poetry files and install dependencies (cache-friendly)
20-
COPY pyproject.toml poetry.lock* ./src/Readme.md ./
20+
COPY pyproject.toml poetry.lock* ./
2121
RUN poetry config virtualenvs.create false \
2222
&& poetry install --no-root --no-interaction --no-ansi
2323

0 commit comments

Comments
 (0)