2021-02-09 01:13:46 +08:00
|
|
|
FROM python:3.9-slim
|
2019-03-28 03:41:20 +08:00
|
|
|
|
2019-08-23 19:37:41 +08: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-28 03:41:20 +08:00
|
|
|
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
2022-11-30 17:17:33 +08:00
|
|
|
COPY requirements .
|
2021-02-09 01:10:24 +08:00
|
|
|
RUN \
|
2022-11-30 17:17:33 +08:00
|
|
|
PIP_CONSTRAINT=requirements/runtime-prerequisites.txt \
|
|
|
|
pip install --upgrade --no-cache-dir \
|
|
|
|
-r requirements/runtime-prerequisites.in && \
|
|
|
|
PIP_CONSTRAINT=requirements/runtime.txt \
|
|
|
|
pip install --upgrade --no-cache-dir --prefer-binary \
|
|
|
|
-r requirements/runtime.in
|
2019-03-28 03:41:20 +08:00
|
|
|
|
2019-08-21 04:48:52 +08:00
|
|
|
WORKDIR /app
|
2019-08-23 19:30:16 +08:00
|
|
|
COPY LICENSE.md .
|
|
|
|
COPY twine-upload.sh .
|
2022-01-08 12:14:48 +08:00
|
|
|
COPY print-hash.py .
|
2019-08-21 04:48:52 +08:00
|
|
|
|
2019-08-23 19:30:16 +08:00
|
|
|
RUN chmod +x twine-upload.sh
|
2019-08-21 04:48:52 +08:00
|
|
|
ENTRYPOINT ["/app/twine-upload.sh"]
|