Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Commit 33bde61

Browse files
Fix build errors due to missing files
1 parent 3c0c6a2 commit 33bde61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
5050
RUN --mount=type=cache,target=/root/.cache \
5151
curl -sSL https://install.python-poetry.org | python3 -
5252

53-
COPY poetry.lock pyproject.toml ./
53+
COPY poetry.lock pyproject.toml LICENSE README.md ./
5454
RUN --mount=type=cache,target=/root/.cache \
5555
poetry install --only main
5656

@@ -100,7 +100,7 @@ ENTRYPOINT ["/docker-entrypoint.sh"]
100100
FROM flask-base AS development
101101

102102
COPY --from=python-builder-base ${POETRY_HOME} ${POETRY_HOME}
103-
COPY poetry.lock pyproject.toml ./
103+
COPY poetry.lock pyproject.toml LICENSE README.md ./
104104

105105
RUN --mount=type=cache,target=/root/.cache \
106106
poetry install

0 commit comments

Comments
 (0)