File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,13 @@ COPY --from=builder /app/target/codeql-extractor-action /usr/local/bin/codeql-ex
2121
2222# Install GitHub CLI
2323RUN apt-get update && \
24- apt-get install -y curl git && \
24+ apt-get install -y curl git ca-certificates && \
2525 curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && \
2626 chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg && \
2727 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 && \
2828 apt-get update && \
2929 apt-get install -y --no-install-recommends gh && \
30+ apt-get remove -y curl && \
3031 apt-get clean && \
3132 rm -rf /var/lib/apt/lists/*
3233
You can’t perform that action at this time.
0 commit comments