Skip to content

Commit d690e36

Browse files
authored
OPSEXP-2432 Always use latest rockylinux images (#146) [release]
1 parent c495ea2 commit d690e36

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,4 @@ updates:
1313
- package-ecosystem: docker
1414
directory: /
1515
schedule:
16-
interval: daily
17-
ignore:
18-
- dependency-name: centos
19-
versions:
20-
- ">= 8"
21-
- "<7"
22-
- dependency-name: rockylinux
23-
update-types:
24-
- "version-update:semver-major"
16+
interval: weekly

.github/workflows/main.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ name: build
22
on:
33
push:
44
branches:
5-
- opsexp-[0-9]+**
6-
- OPSEXP-[0-9]+**
7-
- dependabot/**
8-
- master
5+
- '**'
96

107
env:
118
IMAGE_REGISTRY_NAMESPACE: alfresco

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN set -eux; \
2323
update-alternatives --install /usr/bin/java java $JAVA_HOME/bin/java 1; \
2424
yum clean all && rm -rf /var/cache/yum
2525

26-
FROM rockylinux:8.8.20230518 AS rockylinux8
26+
FROM rockylinux:8.8 AS rockylinux8
2727

2828
ARG JDIST
2929
ARG JAVA_MAJOR
@@ -37,7 +37,7 @@ RUN \
3737
yum install -y langpacks-en java-${JAVA_MAJOR}-openjdk-headless && \
3838
yum clean all && rm -rf /var/cache/yum
3939

40-
FROM rockylinux:9.2.20230513 AS rockylinux9
40+
FROM rockylinux:9.2 AS rockylinux9
4141

4242
ARG JDIST
4343
ARG JAVA_MAJOR

0 commit comments

Comments
 (0)