Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Commit 81b6646

Browse files
committed
add ansible to fullstacked
1 parent 54c131a commit 81b6646

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

images/base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:20.04
22

33
ARG UBUNTU_VERSION=20.04
44
ARG DEBIAN_FRONTEND=noninteractive
5-
ARG PACKAGES="libffi-dev libicu-dev build-essential libssl-dev ca-certificates software-properties-common jq sed grep git curl wget zip python3-pip "
5+
ARG PACKAGES="libffi-dev libicu-dev build-essential libssl-dev ca-certificates software-properties-common jq sed grep git curl wget zip python3-pip"
66

77
ENV USERNAME="runner"
88
ENV UBUNTU_VERSION=20.04

images/fullstacked/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ FROM ghcr.io/fullstack-devops/github-actions-runner:base-latest
33
USER root
44
# install packages along with jq so we can parse JSON
55
# add additional packages as necessary
6-
ARG PACKAGES="openjdk-11-jdk maven nodejs"
6+
ARG PACKAGES="openjdk-11-jdk maven nodejs ansible"
77

88
RUN apt-get update \
9+
&& add-apt-repository -y --update ppa:ansible/ansible \
910
&& curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
1011
&& apt-get install -y --no-install-recommends ${PACKAGES} \
1112
&& rm -rf /var/lib/apt/lists/* \
1213
&& apt-get clean
1314

14-
ENV GH_RUNNER_LABELS="ubuntu-20.04,maven,openjdk-11,nodejs,go,yarn,helm"
15+
ENV GH_RUNNER_LABELS="ubuntu-20.04,maven,openjdk-11,nodejs,go,yarn,helm,ansible"
1516
# https://github.com/helm/helm/releases
1617
ARG HELM_VERSION=3.8.1
1718
# https://go.dev/dl/

0 commit comments

Comments
 (0)