mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
13 lines
590 B
Docker
13 lines
590 B
Docker
FROM python:3.12-slim-bullseye
|
|
COPY releaser.py /releaser.py
|
|
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"]
|