You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ran locally and changed Dockerfile from
```
CMD ["/action/workspace/stale_repos.py"]
ENTRYPOINT ["python3", "-u"]
```
to
```
ENTRYPOINT ["dpkg", "-l", "git"]
```
and then ran
`docker run -it --rm --name debug $(docker images --format "{{.ID}} {{.CreatedAt}}" | sort -rk 2 | awk 'NR==1{print $1}') -- /bin/sh`
to echo out the git version installed
`docker images --format "{{.ID}} {{.CreatedAt}}" | sort -rk 2 | awk 'NR==1{print $1}` gets the last image id created after sorting list by creation date
Signed-off-by: jmeridth <[email protected]>
0 commit comments