File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 2020 - path : postgres
2121 version : 14
2222 - path : debian
23- version : 12.1
23+ version : 12.7
2424 steps :
2525 - uses : actions/checkout@v2
2626 with :
Original file line number Diff line number Diff line change 2020 - path : postgres
2121 version : 14
2222 - path : debian
23- version : 12.1
23+ version : 12.7
2424 steps :
2525 - uses : actions/checkout@v2
2626 with :
Original file line number Diff line number Diff line change 1- FROM debian:12.1
1+ FROM debian:12.7
22ENV DEBIAN_FRONTEND=noninteractive
33RUN apt-get update && apt-get install -y \
44 curl \
@@ -24,6 +24,13 @@ RUN apt-get update && apt-get install -y \
2424 libssl-dev \
2525 pkg-config
2626
27+ RUN mkdir -p -m 755 /etc/apt/keyrings \
28+ && wget -qO- https://cli.github.com/packages/githubcli-archive-keyring.gpg | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
29+ && chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
30+ && echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
31+ && apt-get update \
32+ && apt-get install gh -y
33+
2734# Helm CLI
2835RUN curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg > /dev/null && \
2936 echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list
You can’t perform that action at this time.
0 commit comments