Skip to content

Commit

Permalink
fix: Switch to using AlmaLinux 9 for the data container (#329)
Browse files Browse the repository at this point in the history
CentOS 7 was EOL yesterday and this is breaking all dokken workflows.

Signed-off-by: Lance Albertson <[email protected]>
  • Loading branch information
ramereth authored Jul 1, 2024
1 parent d20fe09 commit 955040e
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 955040e

Please sign in to comment.