Skip to content

Commit 4e5118e

Browse files
authored
Update base images (#328)
1 parent f7fc709 commit 4e5118e

File tree

5 files changed

+36
-3
lines changed

5 files changed

+36
-3
lines changed

.github/workflows/cnf-test-partner-image.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v3
3030

31+
- name: Free Disk Space (Ubuntu)
32+
uses: jlumbroso/free-disk-space@main
33+
with:
34+
tool-cache: false
35+
android: true
36+
dotnet: true
37+
haskell: true
38+
large-packages: true
39+
docker-images: true
40+
swap-storage: true
41+
3142
- name: 'Build the `cnf-test-partner` image'
3243
run: docker build -t $IMAGE_NAME:$IMAGE_TAG -t $IMAGE_NAME:$SPECIFIC_IMAGE_TAG . --no-cache -f $IMAGE_CONTAINER_FILE_PATH
3344
working-directory: .

.github/workflows/debug-partner-image.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v3
3131

32+
- name: Free Disk Space (Ubuntu)
33+
uses: jlumbroso/free-disk-space@main
34+
with:
35+
tool-cache: false
36+
android: true
37+
dotnet: true
38+
haskell: true
39+
large-packages: true
40+
docker-images: true
41+
swap-storage: true
42+
3243
- name: 'Build the `debug-partner` image'
3344
run: docker build --no-cache -f Dockerfile.debug-partner -t $IMAGE_NAME:$IMAGE_TAG .
3445

.github/workflows/local-test-infra.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v3
3030

31+
- name: Free Disk Space (Ubuntu)
32+
uses: jlumbroso/free-disk-space@main
33+
with:
34+
tool-cache: false
35+
android: true
36+
dotnet: true
37+
haskell: true
38+
large-packages: true
39+
docker-images: true
40+
swap-storage: true
41+
3142
- name: Start the k8s cluster
3243
uses: ./.github/actions/start-k8s-cluster
3344

test-partner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/ubi:8.8-854
1+
FROM registry.access.redhat.com/ubi8/ubi:8.8-1032
22
ARG USERNAME=tnf-user
33
ARG USER_UID=1000
44
ARG USER_GID=$USER_UID

test-partner/Dockerfile.debug-partner

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/ubi:8.8-854 as podman-builder
1+
FROM registry.access.redhat.com/ubi8/ubi:8.8-1032 as podman-builder
22
# hadolint ignore=DL3041
33
RUN \
44
dnf update --assumeyes --disableplugin=subscription-manager \
@@ -17,7 +17,7 @@ RUN \
1717
git checkout v4.6.0 \
1818
&& make
1919

20-
FROM registry.access.redhat.com/ubi8/ubi:8.8-854
20+
FROM registry.access.redhat.com/ubi8/ubi:8.8-1032
2121
# hadolint ignore=DL3041
2222
RUN \
2323
dnf update --assumeyes --disableplugin=subscription-manager \

0 commit comments

Comments
 (0)