mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-16 13:06:57 +08:00
releaser: build and use image ghcr.io/pytooling/releaser
This commit is contained in:
@@ -1,4 +1,12 @@
|
||||
FROM python:3.9-slim-bullseye
|
||||
COPY releaser.py /releaser.py
|
||||
RUN pip install PyGithub --progress-bar off
|
||||
RUN pip install PyGithub --progress-bar off \
|
||||
&& apt update -qq \
|
||||
&& apt install -y curl \
|
||||
&& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | \
|
||||
dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \
|
||||
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | \
|
||||
tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
|
||||
&& apt update -qq \
|
||||
&& apt install -y gh
|
||||
CMD ["/releaser.py"]
|
||||
|
||||
Reference in New Issue
Block a user