2025-01-24 04:56:01 +01:00
|
|
|
FROM python:3.13-slim
|
2019-03-27 20:41:20 +01:00
|
|
|
|
2019-08-23 13:37:41 +02:00
|
|
|
LABEL "maintainer" "Sviatoslav Sydorenko <wk+pypa@sydorenko.org.ua>"
|
|
|
|
LABEL "repository" "https://github.com/pypa/gh-action-pypi-publish"
|
2024-05-29 22:25:10 +02:00
|
|
|
LABEL "homepage" "https://github.com/marketplace/actions/pypi-publish"
|
2024-05-27 16:21:57 -04:00
|
|
|
LABEL "org.opencontainers.image.source" "https://github.com/pypa/gh-action-pypi-publish"
|
2019-03-27 20:41:20 +01:00
|
|
|
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
2022-11-30 11:17:12 +01:00
|
|
|
ENV PIP_NO_CACHE_DIR 1
|
2023-05-29 13:42:14 +03:00
|
|
|
ENV PIP_ROOT_USER_ACTION ignore
|
2022-11-30 11:17:12 +01:00
|
|
|
|
2022-11-30 11:17:41 +01:00
|
|
|
ENV PATH "/root/.local/bin:${PATH}"
|
2025-01-24 04:56:01 +01:00
|
|
|
ENV PYTHONPATH "/root/.local/lib/python3.13/site-packages"
|
2022-11-30 11:17:41 +01:00
|
|
|
|
2022-11-30 11:03:33 +01:00
|
|
|
COPY requirements requirements
|
2021-02-08 18:10:24 +01:00
|
|
|
RUN \
|
2022-11-30 10:17:33 +01:00
|
|
|
PIP_CONSTRAINT=requirements/runtime-prerequisites.txt \
|
2022-11-30 11:17:41 +01:00
|
|
|
pip install --user --upgrade --no-cache-dir \
|
2022-11-30 10:17:33 +01:00
|
|
|
-r requirements/runtime-prerequisites.in && \
|
|
|
|
PIP_CONSTRAINT=requirements/runtime.txt \
|
2022-11-30 11:17:41 +01:00
|
|
|
pip install --user --upgrade --no-cache-dir --prefer-binary \
|
2022-11-30 10:17:33 +01:00
|
|
|
-r requirements/runtime.in
|
2019-03-27 20:41:20 +01:00
|
|
|
|
2019-08-20 22:48:52 +02:00
|
|
|
WORKDIR /app
|
2019-08-23 13:30:16 +02:00
|
|
|
COPY LICENSE.md .
|
|
|
|
COPY twine-upload.sh .
|
2022-01-08 12:14:48 +08:00
|
|
|
COPY print-hash.py .
|
2024-09-05 17:25:58 +02:00
|
|
|
COPY print-pkg-names.py .
|
2023-03-06 15:03:34 -05:00
|
|
|
COPY oidc-exchange.py .
|
2024-08-31 20:50:29 -04:00
|
|
|
COPY attestations.py .
|
2019-08-20 22:48:52 +02:00
|
|
|
|
2019-08-23 13:30:16 +02:00
|
|
|
RUN chmod +x twine-upload.sh
|
2019-08-20 22:48:52 +02:00
|
|
|
ENTRYPOINT ["/app/twine-upload.sh"]
|