Skip to content

Commit 61cd791

Browse files
authored
Merge pull request #359 from conductor-oss/haven/fix-dockerfile
Reintroduce README copying in Dockerfile.
2 parents f79bb4a + 6bba87f commit 61cd791

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ WORKDIR /package
4848
RUN curl -sSL https://install.python-poetry.org | python3 -
4949
ENV PATH "/root/.local/bin:$PATH"
5050

51-
COPY pyproject.toml poetry.lock /package/
51+
COPY pyproject.toml poetry.lock README.md /package/
5252
COPY --from=python_test_base /package/src /package/src
5353

5454
RUN poetry config virtualenvs.create false && \
@@ -63,4 +63,4 @@ RUN poetry build
6363
ARG PYPI_USER
6464
ARG PYPI_PASS
6565
RUN poetry config pypi-token.pypi ${PYPI_PASS} && \
66-
poetry publish --username ${PYPI_USER} --password ${PYPI_PASS}
66+
poetry publish --username ${PYPI_USER} --password ${PYPI_PASS}

0 commit comments

Comments
 (0)