-
Notifications
You must be signed in to change notification settings - Fork 5
build: Standardize asset containers to use official Ubuntu base images. #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 3 commits
6e27486
0d480b7
2de68a1
a0a0175
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
# dependencies | ||
|
||
# If there is any dedicated image available, you should build the benchmarking image on top of that | ||
FROM ghcr.io/y-scope/clp/clp-core-dependencies-x86-ubuntu-jammy:main | ||
FROM ubuntu:jammy | ||
|
||
# Install necessary packages | ||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-downgrades \ | ||
tmux \ | ||
vim \ | ||
gzip | ||
gzip=1.10-4ubuntu4.1 | ||
Comment on lines
+9
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick (assertive) Reproducibility: consider pinning tmux and vim as well You’ve pinned gzip; for full reproducibility, pin tmux and vim to Jammy archive versions too. If size matters more than full Vim, switch to vim-tiny. 🧰 Tools🪛 Checkov (3.2.334)[LOW] 1-12: Ensure that HEALTHCHECK instructions have been added to container images (CKV_DOCKER_2) [LOW] 1-12: Ensure that a user for the container has been created (CKV_DOCKER_3) 🤖 Prompt for AI Agents
|
||
|
Uh oh!
There was an error while loading. Please reload this page.