We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f79bb4a + 6bba87f commit 61cd791Copy full SHA for 61cd791
1 file changed
Dockerfile
@@ -48,7 +48,7 @@ WORKDIR /package
48
RUN curl -sSL https://install.python-poetry.org | python3 -
49
ENV PATH "/root/.local/bin:$PATH"
50
51
-COPY pyproject.toml poetry.lock /package/
+COPY pyproject.toml poetry.lock README.md /package/
52
COPY --from=python_test_base /package/src /package/src
53
54
RUN poetry config virtualenvs.create false && \
@@ -63,4 +63,4 @@ RUN poetry build
63
ARG PYPI_USER
64
ARG PYPI_PASS
65
RUN poetry config pypi-token.pypi ${PYPI_PASS} && \
66
- poetry publish --username ${PYPI_USER} --password ${PYPI_PASS}
+ poetry publish --username ${PYPI_USER} --password ${PYPI_PASS}
0 commit comments