Skip to content

Commit

Permalink
add ubuntu support (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanSerafini authored Jun 18, 2024
1 parent 0a13b6e commit e4e1508
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@
image: "docker:26.1.0"

before_script:
- apk add --no-cache bash curl git openssh-client coreutils
- |
{
source /etc/os-release || true
case "${ID:-unknown}" in
alpine)
apk add --no-cache bash curl git openssh-client coreutils
;;
unknown)
echo "Unable to detect operating system"
;;
esac;
}
- |
boost_init_config () {
boost_log_info () {
Expand Down

0 comments on commit e4e1508

Please sign in to comment.