2020-06-03 19:11:14 -04:00
|
|
|
FROM python:3.8-slim
|
2019-03-27 15:41:20 -04:00
|
|
|
|
2019-08-23 07:37:41 -04:00
|
|
|
LABEL "maintainer" "Sviatoslav Sydorenko <wk+pypa@sydorenko.org.ua>"
|
|
|
|
LABEL "repository" "https://github.com/pypa/gh-action-pypi-publish"
|
|
|
|
LABEL "homepage" "https://github.com/pypa/gh-action-pypi-publish"
|
2019-03-27 15:41:20 -04:00
|
|
|
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
2021-02-08 12:10:24 -05:00
|
|
|
RUN \
|
|
|
|
pip install --upgrade --no-cache-dir pip-with-requires-python && \
|
|
|
|
pip install --upgrade --no-cache-dir twine
|
2019-03-27 15:41:20 -04:00
|
|
|
|
2019-08-20 16:48:52 -04:00
|
|
|
WORKDIR /app
|
2019-08-23 07:30:16 -04:00
|
|
|
COPY LICENSE.md .
|
|
|
|
COPY twine-upload.sh .
|
2019-08-20 16:48:52 -04:00
|
|
|
|
2019-08-23 07:30:16 -04:00
|
|
|
RUN chmod +x twine-upload.sh
|
2019-08-20 16:48:52 -04:00
|
|
|
ENTRYPOINT ["/app/twine-upload.sh"]
|