Skip to content
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

fix: Switch to using AlmaLinux 9 for the data container #329

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/kitchen/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def insecure_ssh_private_key
end

def data_dockerfile(registry)
from = "centos:7"
from = "almalinux:9"
if registry
from = "#{registry}/#{from}"
end
Expand All @@ -67,7 +67,7 @@ def data_dockerfile(registry)
MAINTAINER Sean OMeara "[email protected]"
ENV LANG en_US.UTF-8

RUN yum -y install tar rsync openssh-server passwd git
RUN dnf -y install tar rsync openssh-server passwd git
RUN ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''

# uncomment to debug cert issues
Expand Down