mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-06 00:55:50 -05:00
19 lines
537 B
Docker
19 lines
537 B
Docker
FROM python:3.9-slim
|
|
|
|
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"
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN \
|
|
pip install --upgrade --no-cache-dir pip-with-requires-python && \
|
|
pip install --upgrade --no-cache-dir --prefer-binary twine
|
|
|
|
WORKDIR /app
|
|
COPY LICENSE.md .
|
|
COPY twine-upload.sh .
|
|
|
|
RUN chmod +x twine-upload.sh
|
|
ENTRYPOINT ["/app/twine-upload.sh"]
|