Updated action workflows and added epel-9 to ubi9 image
This commit is contained in:
parent
6f7c333b9e
commit
4dcd35adfc
|
@ -17,8 +17,8 @@ jobs:
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.winteraccess.id
|
registry: git.winteraccess.id
|
||||||
username: aditya.prima
|
username: ${{ vars.REGISTRY_USER }}
|
||||||
password: ${{ secrets.PATOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
- name: Build and push 9.3
|
- name: Build and push 9.3
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
|
@ -62,8 +62,8 @@ jobs:
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: docker.io
|
registry: docker.io
|
||||||
username: aprimediet
|
username: ${{ vars.REGISTRY_USER }}
|
||||||
password: ${{ secrets.DOCKER_TOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
- name: Build and push 9.3
|
- name: Build and push 9.3
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
|
@ -107,8 +107,8 @@ jobs:
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: docker.io
|
registry: docker.io
|
||||||
username: aprimediet
|
username: ${{ vars.REGISTRY_USER }}
|
||||||
password: ${{ secrets.DOCKER_TOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
- name: Build and push 9.3
|
- name: Build and push 9.3
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -9,8 +9,10 @@ ARG TIMEZONE="Asia/Jakarta"
|
||||||
# Change timezone to desired timezone
|
# Change timezone to desired timezone
|
||||||
ENV TZ=${TIMEZONE}
|
ENV TZ=${TIMEZONE}
|
||||||
|
|
||||||
|
# Reconfigure tzdata and also install epel-9
|
||||||
RUN dnf -y install tzdata && \
|
RUN dnf -y install tzdata && \
|
||||||
dnf -y reinstall tzdata && \
|
dnf -y reinstall tzdata && \
|
||||||
|
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
|
||||||
dnf -y update && \
|
dnf -y update && \
|
||||||
dnf -y autoremove && \
|
dnf -y autoremove && \
|
||||||
dnf -y clean all
|
dnf -y clean all
|
||||||
|
|
Loading…
Reference in New Issue