pypi-publish/Dockerfile

33 lines
939 B
Docker
Raw Normal View History

2024-03-07 18:13:50 -05:00
FROM python:3.12-slim
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"
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
2022-11-30 05:17:12 -05:00
ENV PIP_NO_CACHE_DIR 1
2023-05-29 06:42:14 -04:00
ENV PIP_ROOT_USER_ACTION ignore
2022-11-30 05:17:12 -05:00
ENV PATH "/root/.local/bin:${PATH}"
2024-03-07 18:13:50 -05:00
ENV PYTHONPATH "/root/.local/lib/python3.12/site-packages"
COPY requirements requirements
RUN \
PIP_CONSTRAINT=requirements/runtime-prerequisites.txt \
pip install --user --upgrade --no-cache-dir \
-r requirements/runtime-prerequisites.in && \
PIP_CONSTRAINT=requirements/runtime.txt \
pip install --user --upgrade --no-cache-dir --prefer-binary \
-r requirements/runtime.in
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 .
COPY oidc-exchange.py .
2019-08-23 07:30:16 -04:00
RUN chmod +x twine-upload.sh
ENTRYPOINT ["/app/twine-upload.sh"]