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