pypi-publish/Dockerfile
2019-05-26 19:50:01 +02:00

20 lines
639 B
Docker

FROM python:3.7-slim
LABEL "maintainer"="Sviatoslav Sydorenko <wk+re-actors@sydorenko.org.ua>"
LABEL "repository"="https://github.com/re-actors/gh-action-pypi-publish"
LABEL "homepage"="https://github.com/re-actors/gh-action-pypi-publish"
LABEL "com.github.actions.name"="pypi-publish"
LABEL "com.github.actions.description"="Upload Python distribution packages to PyPI"
LABEL "com.github.actions.icon"="upload-cloud"
LABEL "com.github.actions.color"="yellow"
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ADD LICENSE.md /LICENSE.md
RUN pip install --upgrade --no-cache-dir twine
ENTRYPOINT ["twine"]
CMD ["upload", "dist/*"]