mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-06 00:55:50 -05:00
32 lines
939 B
Docker
32 lines
939 B
Docker
FROM python:3.11-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
|
|
|
|
ENV PIP_NO_CACHE_DIR 1
|
|
ENV PIP_ROOT_USER_ACTION ignore
|
|
|
|
ENV PATH "/root/.local/bin:${PATH}"
|
|
ENV PYTHONPATH "/root/.local/lib/python3.11/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
|
|
COPY LICENSE.md .
|
|
COPY twine-upload.sh .
|
|
COPY print-hash.py .
|
|
COPY oidc-exchange.py .
|
|
|
|
RUN chmod +x twine-upload.sh
|
|
ENTRYPOINT ["/app/twine-upload.sh"]
|