Skip to content

Commit eda426e

Browse files
committed
install git in containers
1 parent fa67a3c commit eda426e

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/Dockerfile-centos-7

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ USER root
55
RUN yum install -y epel-release
66
RUN yum install -y ansible
77
RUN yum install -y cronie
8+
RUN yum install -y git
89

910
COPY ./.github/workflows/test-playbook.sh /test-playbook.sh
1011

.github/workflows/Dockerfile-rockylinux-8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ USER root
55
RUN yum install -y epel-release
66
RUN yum install -y ansible
77
RUN yum install -y cronie
8+
RUN yum install -y git
89

910
COPY ./.github/workflows/test-playbook.sh /test-playbook.sh
1011

.github/workflows/Dockerfile-ubuntu-18.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:18.04
33
USER root
44

55
RUN apt-get update
6-
RUN apt-get install -y cron gpg python3.8 python3-pip systemd
6+
RUN apt-get install -y cron gpg python3.8 python3-pip systemd git
77

88
RUN python3.8 -m pip install -U pip
99
RUN python3.8 -m pip install ansible

.github/workflows/Dockerfile-ubuntu-20.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:20.04
33
USER root
44

55
RUN apt-get update
6-
RUN apt-get install -y cron gpg python3-pip
6+
RUN apt-get install -y cron gpg python3-pip git
77
RUN env DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true apt-get install -y systemd
88

99
RUN pip3 install ansible

0 commit comments

Comments
 (0)