mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Bumps redhat/ubi8-init from 8.10-5.1724179535 to 8.10-7. --- updated-dependencies: - dependency-name: redhat/ubi8-init dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
722 B
Text
21 lines
722 B
Text
FROM redhat/ubi8-init:8.10-7@sha256:abe156db7c0da0305a3ff0808c0c682c1667b029e29e9feaa9cdf4b1341c71a4
|
|
|
|
ENV NGINX_VERSION 1.26.2
|
|
|
|
# Copy rocky repo
|
|
COPY src/linux/rocky-8.repo /etc/yum.repos.d/rocky.repo
|
|
RUN sed -i "s/%ARCH%/$(uname -m)/g" /etc/yum.repos.d/rocky.repo
|
|
|
|
# Copy RPM-GPG-KEY-Rocky-8
|
|
COPY src/linux/RPM-GPG-KEY-Rocky-8 /etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-8
|
|
|
|
# Import RPM-GPG-KEY-Rocky-8
|
|
RUN rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-8
|
|
|
|
COPY src/linux/nginx.repo /etc/yum.repos.d/nginx.repo
|
|
|
|
RUN dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
|
|
dnf install php-fpm curl yum-utils -y && \
|
|
dnf install nginx-${NGINX_VERSION} -y
|
|
|
|
COPY ./package-rhel/*.rpm /opt
|