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

Feature: Add alpine 3.19 images and bump ansible versions for alpine edge, and ubuntu 22.04-ppa images #38

Merged
Show file tree
Hide file tree
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
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
OS: [alpine]
OS_VARIANT: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13', '3.14', '3.15', '3.16', '3.17', '3.18', edge]
OS_VARIANT: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13', '3.14', '3.15', '3.16', '3.17', '3.18', '3.19', edge]
include:
- OS: alpine
OS_VARIANT: 3.8
Expand Down Expand Up @@ -64,10 +64,14 @@ jobs:
OS_VARIANT: 3.18
BASE_IMAGE_TAG: '3.18'
ANSIBLE_VERSION: 7.5.0
- OS: alpine
OS_VARIANT: 3.19
BASE_IMAGE_TAG: '3.19'
ANSIBLE_VERSION: 8.6.1
- OS: alpine
OS_VARIANT: edge
BASE_IMAGE_TAG: edge
ANSIBLE_VERSION: 8.4.0
ANSIBLE_VERSION: 9.1.0
env:
OS: ${{ matrix.OS }}
OS_VARIANT: ${{ matrix.OS_VARIANT }}
Expand Down Expand Up @@ -195,7 +199,7 @@ jobs:
OS_VARIANT: 22.04
PACKAGE_TYPE: ppa
SUFFIX_PPA: -ppa
ANSIBLE_VERSION: 8.5.0
ANSIBLE_VERSION: 8.7.0
env:
OS: ${{ matrix.OS }}
OS_VARIANT: ${{ matrix.OS_VARIANT }}
Expand Down
9 changes: 9 additions & 0 deletions variants/alpine/3.19/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ARG BASE_IMAGE
FROM $BASE_IMAGE

RUN apk update \
&& apk search ansible \
&& apk add --no-cache ansible=8.6.1-r0 openssh-client \
&& rm -rf /var/cache/apk/*

CMD ["/bin/sh"]
2 changes: 1 addition & 1 deletion variants/alpine/edge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM $BASE_IMAGE

RUN apk update \
&& apk search ansible \
&& apk add --no-cache ansible=8.4.0-r0 openssh-client \
&& apk add --no-cache ansible=9.1.0-r0 openssh-client \
&& rm -rf /var/cache/apk/*

CMD ["/bin/sh"]
2 changes: 1 addition & 1 deletion variants/ubuntu/22.04-ppa/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apt-get update \
&& apt-get install -y software-properties-common \
&& apt-add-repository --yes --update ppa:ansible/ansible \
&& apt-cache policy ansible \
&& apt-get install -y ansible=8.5.0-1ppa~jammy openssh-client \
&& apt-get install -y ansible=8.7.0-1ppa~jammy openssh-client \
&& apt-get remove -y --autoremove software-properties-common \
&& rm -rf /var/lib/apt/lists/*

Expand Down
Loading