2019-03-28 03:41:20 +08:00
|
|
|
FROM python:3.7-slim
|
|
|
|
|
|
|
|
LABEL "maintainer"="Sviatoslav Sydorenko <wk+re-actors@sydorenko.org.ua>"
|
2019-05-27 01:50:01 +08:00
|
|
|
LABEL "repository"="https://github.com/re-actors/gh-action-pypi-publish"
|
|
|
|
LABEL "homepage"="https://github.com/re-actors/gh-action-pypi-publish"
|
2019-03-28 03:41:20 +08:00
|
|
|
|
2019-05-27 01:50:01 +08:00
|
|
|
LABEL "com.github.actions.name"="pypi-publish"
|
2019-03-28 03:41:20 +08:00
|
|
|
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
|
|
|
|
|
2019-03-30 06:21:12 +08:00
|
|
|
ADD LICENSE.md /LICENSE.md
|
|
|
|
|
2019-03-28 03:41:20 +08:00
|
|
|
RUN pip install --upgrade --no-cache-dir twine
|
|
|
|
|
|
|
|
ENTRYPOINT ["twine"]
|
|
|
|
CMD ["upload", "dist/*"]
|