mirror of
https://gitcode.com/gh_mirrors/gh/gh-action-pypi-publish.git
synced 2026-07-02 18:27:49 +00:00
25d67dc298
Co-Authored-By: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua> Co-Authored-By: Pradyun Gedam <pradyunsg@gmail.com>
18 lines
480 B
Docker
18 lines
480 B
Docker
FROM python:3.7-slim
|
|
|
|
LABEL "maintainer"="Sviatoslav Sydorenko <wk+re-actors@sydorenko.org.ua>"
|
|
LABEL "repository"="https://github.com/re-actors/gh-action-pypi-publish"
|
|
LABEL "homepage"="https://github.com/re-actors/gh-action-pypi-publish"
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN pip install --upgrade --no-cache-dir twine
|
|
|
|
WORKDIR /app
|
|
COPY ./LICENSE.md /app/
|
|
COPY ./twine-upload.sh /app/
|
|
|
|
RUN chmod +x /app/twine-upload.sh
|
|
ENTRYPOINT ["/app/twine-upload.sh"]
|