Open
Conversation
Update Ubuntu version and build dependencies per #43
| @@ -1,17 +1,17 @@ | |||
| FROM ubuntu:hirsute-20210723 | |||
| FROM ubuntu:jammy-20221130 | |||
Member
There was a problem hiding this comment.
Is there a reason we don't use the LTS?
There was a problem hiding this comment.
I updated the Dockerfile locally as follows and the image works just fine:
FROM ubuntu:20.04
# Disable DL3008 as it is not possible to pin virtual packages such as qemu-kvm
# hadolint ignore=DL3008
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
ansible \
git \
qemu-kvm \
qemu-utils \
unzip \
xorriso \
curl \
jq \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*Question: Why pin the version for specific packages?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Update Ubuntu version and build dependencies per #43
We may need additional OS updating changes, such as in tools/build_all.sh
Why is this needed
Fixes: #43
How Has This Been Tested?
How are existing users impacted? What migration steps/scripts do we need?
Checklist:
I have: