2021-02-08 12:13:46 -05:00
|
|
|
FROM python:3.9-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 && \
|
2021-02-08 12:12:27 -05:00
|
|
|
pip install --upgrade --no-cache-dir --prefer-binary 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 .
|
2022-01-07 23:14:48 -05:00
|
|
|
COPY print-hash.py .
|
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"]
|