Skip to content

Commit

Permalink
Add time to the package_linux and package_musl images (#240)
Browse files Browse the repository at this point in the history
* Add `time` to the `package_linux` and `package_musl` images

* `package_musl`: temporarily use `busybox` instead of `time`
  • Loading branch information
DilumAluthge authored Oct 30, 2022
1 parent 318f365 commit adffa7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions linux/package_linux.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ packages = [
"perl",
"pkg-config",
"python3",
"time",
"vim",
"wget",
]
Expand Down
2 changes: 2 additions & 0 deletions linux/package_musl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ image = args.image

packages = [
AlpinePackage("bash"),
AlpinePackage("busybox"), # Provides `time`; TODO: delete this line once we upgrade to Alpine 3.17
AlpinePackage("bzip2"),
AlpinePackage("cmake"),
AlpinePackage("curl"),
Expand All @@ -19,6 +20,7 @@ packages = [
AlpinePackage("perl"),
AlpinePackage("python3"),
AlpinePackage("tar"),
# AlpinePackage("time"), # TODO: uncomment this line once we upgrade to Alpine 3.17
AlpinePackage("wget"),

# Install GCC 9, specifically
Expand Down

0 comments on commit adffa7b

Please sign in to comment.